spaCy - Doc.ents 属性

此 doc 属性用于文档中的命名实体。如果已应用实体识别器,此属性将返回命名实体跨度对象的元组。

示例 1

Doc.ents 属性的示例如下 −

import spacy
nlp_model = spacy.load("en_core_web_sm")
doc = nlp_model("This is Tutorialspoint.com.")
ents = list(doc.ents)
ents[0].label

输出

执行代码时,您将看到以下输出 −

383

示例 2

这是 Doc.ents 属性的另一个示例 −

ents[0].label_

输出

'ORG'

示例 3

下面给出了 Doc.ents 属性的示例 −

ents[0].text

输出

'Tutorialspoint.com'

spacy_doc_class_contextmanager_and_property.html