spaCy - Doc.has_vector 属性
顾名思义,此 doc 属性表示一个布尔值,表示词向量是否与对象相关联。
示例
Doc.has_vector 的示例如下 −
import spacy nlp_model = spacy.load("en_core_web_sm") doc = nlp_model("The website is Tutorialspoint.com.") doc.has_vector
输出
True
spacy_doc_class_contextmanager_and_property.html