实例介绍
用于LDA,贝叶斯网络分析,TF_IDF词频计算
【实例截图】
【核心代码】
4744300845397525053.gz
└── gensim-0.10.3
├── CHANGELOG.txt
├── COPYING
├── COPYING.LESSER
├── docs
│ ├── about.html
│ ├── apiref.html
│ ├── changes_080.html
│ ├── corpora
│ │ ├── bleicorpus.html
│ │ ├── corpora.html
│ │ ├── dictionary.html
│ │ ├── hashdictionary.html
│ │ ├── indexedcorpus.html
│ │ ├── lowcorpus.html
│ │ ├── mmcorpus.html
│ │ ├── svmlightcorpus.html
│ │ ├── textcorpus.html
│ │ ├── ucicorpus.html
│ │ └── wikicorpus.html
│ ├── dist_lda.html
│ ├── dist_lsi.html
│ ├── distributed.html
│ ├── genindex.html
│ ├── index.html
│ ├── indextoc.html
│ ├── install.html
│ ├── interfaces.html
│ ├── intro.html
│ ├── matutils.html
│ ├── models
│ │ ├── doc2vec.html
│ │ ├── dtmmodel.html
│ │ ├── hdpmodel.html
│ │ ├── lda_dispatcher.html
│ │ ├── ldamallet.html
│ │ ├── ldamodel.html
│ │ ├── ldamodelmulticore.html
│ │ ├── ldamulticore.html
│ │ ├── lda_worker.html
│ │ ├── logentropy_model.html
│ │ ├── lsi_dispatcher.html
│ │ ├── lsimodel.html
│ │ ├── lsi_worker.html
│ │ ├── models.html
│ │ ├── phrases.html
│ │ ├── rpmodel.html
│ │ ├── tfidfmodel.html
│ │ └── word2vec.html
│ ├── objects.inv
│ ├── search.html
│ ├── searchindex.js
│ ├── similarities
│ │ ├── docsim.html
│ │ └── simserver.html
│ ├── simserver.html
│ ├── _static
│ │ ├── css
│ │ │ ├── anythingslider.css
│ │ │ ├── jquery.qtip.min.css
│ │ │ └── style.css
│ │ ├── doctools.js
│ │ ├── favicon.ico
│ │ ├── images
│ │ │ ├── arrows.png
│ │ │ ├── bg.png
│ │ │ ├── bullets.png
│ │ │ ├── checker.png
│ │ │ ├── default.png
│ │ │ ├── direct-install.png
│ │ │ ├── download.png
│ │ │ ├── favicon.ico
│ │ │ ├── features
│ │ │ │ ├── converters.png
│ │ │ │ ├── efficient_implementations.png
│ │ │ │ ├── free_lgpl.png
│ │ │ │ ├── memory_independence.png
│ │ │ │ ├── platform_independence.png
│ │ │ │ ├── robust.png
│ │ │ │ ├── similarity_queries.png
│ │ │ │ └── support.png
│ │ │ ├── forkme_left_white_ffffff.png
│ │ │ ├── gensim_code.png
│ │ │ ├── gensim_code.png.old
│ │ │ ├── gensim_compact.png
│ │ │ ├── gensim-footer.png
│ │ │ ├── gensim.png
│ │ │ ├── get-started.png
│ │ │ ├── googlegroups.png
│ │ │ ├── loading.gif
│ │ │ ├── logo-gensim_compact.png
│ │ │ ├── logo-gensim.png
│ │ │ ├── logo_tailwind.jpeg
│ │ │ ├── menubutton.png
│ │ │ ├── references
│ │ │ │ ├── logo_dtu.gif
│ │ │ │ ├── logo_dynadmic.png
│ │ │ │ ├── logo_eudml.png
│ │ │ │ ├── logo_ghent.png
│ │ │ │ ├── logo_ibcn.png
│ │ │ │ ├── logo_issuu.jpeg
│ │ │ │ ├── logo_roistr.png
│ │ │ │ ├── logo_sportsauthority.png
│ │ │ │ ├── logo_tailwind.jpeg
│ │ │ │ └── logo_tailwind.png
│ │ │ ├── tagline_compact.png
│ │ │ ├── tagline.png
│ │ │ ├── twitterbird.png
│ │ │ ├── ukazka2.png
│ │ │ └── ukazka.png
│ │ ├── jquery.js
│ │ ├── js
│ │ │ ├── jquery-1.9.1.min.js
│ │ │ ├── jquery.anythingslider.min.js
│ │ │ ├── jquery-migrate-1.1.1.min.js
│ │ │ └── jquery.qtip.min.js
│ │ ├── pygments.css
│ │ └── underscore.js
│ ├── support.html
│ ├── tut1.html
│ ├── tut2.html
│ ├── tut3.html
│ ├── tutorial.html
│ ├── utils.html
│ └── wiki.html
├── ez_setup.py
├── gensim
│ ├── corpora
│ │ ├── bleicorpus.py
│ │ ├── csvcorpus.py
│ │ ├── dictionary.py
│ │ ├── hashdictionary.py
│ │ ├── indexedcorpus.py
│ │ ├── __init__.py
│ │ ├── lowcorpus.py
│ │ ├── malletcorpus.py
│ │ ├── mmcorpus.py
│ │ ├── svmlightcorpus.py
│ │ ├── textcorpus.py
│ │ ├── ucicorpus.py
│ │ └── wikicorpus.py
│ ├── __init__.py
│ ├── interfaces.py
│ ├── matutils.py
│ ├── models
│ │ ├── doc2vec_inner.c
│ │ ├── doc2vec_inner.pyx
│ │ ├── doc2vec.py
│ │ ├── dtmmodel.py
│ │ ├── hdpmodel.py
│ │ ├── __init__.py
│ │ ├── lda_dispatcher.py
│ │ ├── ldamallet.py
│ │ ├── ldamodel.py
│ │ ├── ldamulticore.py
│ │ ├── lda_worker.py
│ │ ├── logentropy_model.py
│ │ ├── lsi_dispatcher.py
│ │ ├── lsimodel.py
│ │ ├── lsi_worker.py
│ │ ├── phrases.py
│ │ ├── rpmodel.py
│ │ ├── saul.py
│ │ ├── test.py
│ │ ├── tfidfmodel.py
│ │ ├── tst.py
│ │ ├── voidptr.h
│ │ ├── word2vec_inner.c
│ │ ├── word2vec_inner.pyx
│ │ └── word2vec.py
│ ├── nosy.py
│ ├── parsing
│ │ ├── __init__.py
│ │ ├── porter.py
│ │ └── preprocessing.py
│ ├── scripts
│ │ ├── __init__.py
│ │ ├── make_wikicorpus.py
│ │ ├── make_wiki_lemma.py
│ │ ├── make_wiki_online_lemma.py
│ │ ├── make_wiki_online_nodebug.py
│ │ ├── make_wiki_online.py
│ │ └── make_wiki.py
│ ├── similarities
│ │ ├── docsim.py
│ │ └── __init__.py
│ ├── test
│ │ ├── index_wiki.py
│ │ ├── __init__.py
│ │ ├── simspeed2.py
│ │ ├── simspeed.py
│ │ ├── svd_error.py
│ │ ├── test_big.py
│ │ ├── test_corpora_dictionary.py
│ │ ├── test_corpora_hashdictionary.py
│ │ ├── test_corpora.py
│ │ ├── test_data
│ │ │ ├── dtm_test
│ │ │ ├── head500.noblanks.cor
│ │ │ ├── head500.noblanks.cor.bz2
│ │ │ ├── head500.noblanks.cor_tfidf.model
│ │ │ ├── head500.noblanks.cor_wordids.txt
│ │ │ ├── lee_background.cor
│ │ │ ├── lee.cor
│ │ │ ├── miIslita.cor
│ │ │ ├── para2para_text1.txt
│ │ │ ├── para2para_text2.txt
│ │ │ ├── similarities0-1.txt
│ │ │ ├── testcorpus.blei
│ │ │ ├── testcorpus.blei.index
│ │ │ ├── testcorpus.blei.vocab
│ │ │ ├── testcorpus.low
│ │ │ ├── testcorpus.low.index
│ │ │ ├── testcorpus.mallet
│ │ │ ├── testcorpus.mallet.index
│ │ │ ├── testcorpus.mm
│ │ │ ├── testcorpus.mm.index
│ │ │ ├── test_corpus_ok.mm
│ │ │ ├── test_corpus_small.mm
│ │ │ ├── testcorpus.svmlight
│ │ │ ├── testcorpus.svmlight.index
│ │ │ ├── testcorpus.txt
│ │ │ ├── testcorpus.uci
│ │ │ ├── testcorpus.uci.index
│ │ │ └── testcorpus.uci.vocab
│ │ ├── test_dtm.py
│ │ ├── test_lee.py
│ │ ├── test_miislita.py
│ │ ├── test_models.py
│ │ ├── test_parsing.py
│ │ ├── test_phrases.py
│ │ ├── test_similarities.py
│ │ ├── test_utils.py
│ │ └── test_word2vec.py
│ └── utils.py
├── gensim.egg-info
│ ├── dependency_links.txt
│ ├── not-zip-safe
│ ├── PKG-INFO
│ ├── requires.txt
│ ├── SOURCES.txt
│ └── top_level.txt
├── MANIFEST.in
├── PKG-INFO
├── README.rst
├── setup.cfg
└── setup.py
20 directories, 227 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论