本文整理汇总了Python中nltk.corpus.reader.xmldocs.XMLCorpusView.read_block方法的典型用法代码示例。如果您正苦于以下问题:Python XMLCorpusView.read_block方法的具体用法?Python XMLCorpusView.read_block怎么用?Python XMLCorpusView.read_block使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nltk.corpus.reader.xmldocs.XMLCorpusView
的用法示例。
在下文中一共展示了XMLCorpusView.read_block方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: read_block
# 需要导入模块: from nltk.corpus.reader.xmldocs import XMLCorpusView [as 别名]
# 或者: from nltk.corpus.reader.xmldocs.XMLCorpusView import read_block [as 别名]
def read_block(self, stream, tagspec=None, elt_handler=None):
return list(
filter(
lambda x: x is not None,
XMLCorpusView.read_block(self, stream, tagspec, elt_handler),
)
)
示例2: handle_query
# 需要导入模块: from nltk.corpus.reader.xmldocs import XMLCorpusView [as 别名]
# 或者: from nltk.corpus.reader.xmldocs.XMLCorpusView import read_block [as 别名]
def handle_query(self):
self._open()
header = []
while True:
segm = XMLCorpusView.read_block(self, self._stream)
if len(segm) == 0:
break
header.extend(segm)
self.close()
return header
示例3: read_block
# 需要导入模块: from nltk.corpus.reader.xmldocs import XMLCorpusView [as 别名]
# 或者: from nltk.corpus.reader.xmldocs.XMLCorpusView import read_block [as 别名]
def read_block(self, stream, tagspec=None, elt_handler=None):
"""
Returns text as a list of sentences.
"""
txt = []
while True:
segm = XMLCorpusView.read_block(self, stream)
if len(segm) == 0:
break
for part in segm:
txt.append(part)
return [' '.join([segm for segm in txt])]