当前位置: 首页>>代码示例>>Python>>正文


Python XMLCorpusView.read_block方法代码示例

本文整理汇总了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),
         )
     )
开发者ID:prz3m,项目名称:kind2anki,代码行数:9,代码来源:mte.py

示例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
开发者ID:esabelhaus,项目名称:secret-octo-dubstep,代码行数:12,代码来源:nkjp.py

示例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])]
开发者ID:esabelhaus,项目名称:secret-octo-dubstep,代码行数:15,代码来源:nkjp.py


注:本文中的nltk.corpus.reader.xmldocs.XMLCorpusView.read_block方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。