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


Python Preprocessor.term2ch方法代码示例

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


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

示例1: Preprocessor

# 需要导入模块: from preprocessor import Preprocessor [as 别名]
# 或者: from preprocessor.Preprocessor import term2ch [as 别名]
        self.unseen_counts.per_cic(calculated_id=calculated['calc_id'], 
            actual_id=calculated['actual_id'],
            seen_unseen=calculated['seen_unseen_count'])
        return calculated     
            
                

if __name__ == '__main__':

    p = Preprocessor()
    
    lm = LM(n=2, verbose=True, smoothing='Laplace', corpus_mix=0)
    
    #print lm.to_ngrams(p.term2ch('hello dear world'))
    #sys.exit()
    
    #lm.add_doc(doc_id='apple', doc_terms=p.term2ch('i see glass of apple juice'))
    lm.add_doc(doc_id='apple', doc_terms=p.term2ch('the tree is full or apples'))
    #lm.add_doc(doc_id='orange', doc_terms=p.term2ch('i see the orange tree shaking'))
    lm.add_doc(doc_id='orange', doc_terms=p.term2ch('orange orange juice'))
    #lm.add_doc(doc_id='orange', doc_terms=p.term2ch('i do not like jaffa cake'))
    #lm.add_doc(doc_id='apple', doc_terms=p.term2ch('i have apple juice'))
    #print lm.pr
    result = lm.calculate(doc_terms=p.term2ch('orango juice'))
    print result
    #print lm.term_count_n
    #print lm.term_count_n_1
    #print lm.vocabulary
 
    
开发者ID:GersonBastos,项目名称:irlib,代码行数:30,代码来源:lm.py


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