本文整理汇总了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
示例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))