def __iadd__(self, other):
'''add an instance (e.g., from another sentence).'''
if type(other) is tuple:
## avoid creating new CiderScorer instances
self.cook_append(other[0], other[1])
else:
self.ctest.extend(other.ctest)
self.crefs.extend(other.crefs)
return self
cider_scorer_compute_sentence.py 文件源码
python
阅读 25
收藏 0
点赞 0
评论 0
评论列表
文章目录