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


Python WikiCorpus.loadDictionary方法代码示例

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


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

示例1: enumerate

# 需要导入模块: from gensim.corpora import WikiCorpus [as 别名]
# 或者: from gensim.corpora.WikiCorpus import loadDictionary [as 别名]
        gamma, _ = self.inference([bow])
        theta = numpy.exp(dirichlet_expectation(gamma[0]))
        topicDist = theta / theta.sum() # normalize to proper distribution
        return [(topicId, topicValue) for topicId, topicValue in enumerate(topicDist)
                if topicValue >= eps] # ignore document's topics that have prob < eps
#endclass LdaModel



if __name__ == '__main__':
    logging.basicConfig(format='%(asctime)s : %(levelname)s : %(message)s')
    logger.setLevel(level = logging.DEBUG)
    logger.info("running %s" % ' '.join(sys.argv))

    import os.path
    program = os.path.basename(sys.argv[0])
    from gensim.corpora import WikiCorpus, MmCorpus, LowCorpus
    numpy.random.seed(100000001)

    vocab = WikiCorpus.loadDictionary('/Users/kofola/gensim/results/wiki10_en_wordids.txt')
    corpus = MmCorpus('/Users/kofola/gensim/results/wiki10_en_bow.mm')
    K = 50

    olda = LdaModel(numTopics=K, id2word=vocab, alpha=1./K, eta=1./K, decay=0.5)
    olda.update(corpus)
    olda.save('olda2.pkl')

    logging.info("finished running %s" % program)

开发者ID:hyperink,项目名称:ideagen,代码行数:30,代码来源:ldamodel.py


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