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.html