spaCy - Doc.sents 属性



顾名思义,此 doc 属性用于遍历特定文档中的句子。如果已禁用解析器,则sents 迭代器不可用。

示例 1

参考下面给出的 Doc.sents 属性示例 −

import spacy
nlp_model = spacy.load("en_core_web_sm")
doc = nlp_model("The website is Tutorialspoint.com. It is having best technical tutorials.")
sents = list(doc.sents)
len(sents)

输出

您将获得以下输出 −

2

示例 2

下面给出了 Doc.sents 属性的另一个示例 −

[a.root.text for a in sents]

输出

['is', 'having']
spacy_doc_class_contextmanager_and_property.htm
广告