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


Python compat.itervalues方法代码示例

本文整理汇总了Python中nltk.compat.itervalues方法的典型用法代码示例。如果您正苦于以下问题:Python compat.itervalues方法的具体用法?Python compat.itervalues怎么用?Python compat.itervalues使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在nltk.compat的用法示例。


在下文中一共展示了compat.itervalues方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _find_top_nodes

# 需要导入模块: from nltk import compat [as 别名]
# 或者: from nltk.compat import itervalues [as 别名]
def _find_top_nodes(self, node_list):
        top_nodes = node_list.copy()
        for f in compat.itervalues(self.fragments):
            # the label is the first argument of the predicate
            args = f[1]
            for arg in args:
                if arg in node_list:
                    top_nodes.discard(arg)
        return top_nodes 
开发者ID:Thejas-1,项目名称:Price-Comparator,代码行数:11,代码来源:hole.py

示例2: N

# 需要导入模块: from nltk import compat [as 别名]
# 或者: from nltk.compat import itervalues [as 别名]
def N(self):
        """
        Return the total number of sample outcomes that have been
        recorded by this ``ConditionalFreqDist``.

        :rtype: int
        """
        return sum(fdist.N() for fdist in compat.itervalues(self)) 
开发者ID:Thejas-1,项目名称:Price-Comparator,代码行数:10,代码来源:probability.py


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