本文整理汇总了Python中nltk.corpus.util.LazyCorpusLoader.mentions方法的典型用法代码示例。如果您正苦于以下问题:Python LazyCorpusLoader.mentions方法的具体用法?Python LazyCorpusLoader.mentions怎么用?Python LazyCorpusLoader.mentions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nltk.corpus.util.LazyCorpusLoader
的用法示例。
在下文中一共展示了LazyCorpusLoader.mentions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: demo
# 需要导入模块: from nltk.corpus.util import LazyCorpusLoader [as 别名]
# 或者: from nltk.corpus.util.LazyCorpusLoader import mentions [as 别名]
def demo(**kwargs):
import nltk
from nltk_contrib.coref import NLTK_COREF_DATA
from nltk_contrib.coref.muc import muc6_documents, muc7_documents
from nltk_contrib.coref.muc import MUCCorpusReader
nltk.data.path.insert(0, NLTK_COREF_DATA)
muc6 = LazyCorpusLoader('muc6/', MUCCorpusReader, muc6_documents)
for sent in muc6.iob_sents()[:]:
for word in sent:
print word
print
print
for sent in muc6.mentions(depth=None):
for mention in sent:
print mention
if sent: print
print
muc7 = LazyCorpusLoader('muc7/', MUCCorpusReader, muc7_documents)
for sent in muc7.iob_sents()[:]:
for word in sent:
print word
print
print
for sent in muc7.mentions(depth=None):
for mention in sent:
print mention
if sent: print
print