是否有用于 LSA/LSI 的 C++ 库?最好是 MIT, BSD, Apache,... 许可证 - 没有 GPL。
问问题
2651 次
1 回答
2
David Blei 的页面上列出了几种潜在 Diriclet 分配 (LDA)、潜在语义分析 (LSA) 和主题建模的 C/C++ 实现。http://www.cs.columbia.edu/~blei/topicmodeling.html以及 Berry 和 Dumai 的页面http://web.eecs.utk.edu/research/lsi/
以下是 C/C++ 实现的简短列表:
lda-c
: D. Blei 的 LDA 变分推理实现。class-slda
: C. Wang 对分类响应的监督主题模型的实现。hdp
: C. Wang 的分层狄利克雷过程的实现Gibbs Sampling
: Phan 和 Nguyen 使用 Gibbs 采样实现 LDA -PHP LSA
: http://sourceforge.net/projects/phplsa/lsa_prj
:https ://github.com/matpalm/lsa/tree/master/lsa_prj
如果您喜欢带有教程的 python 版本: 请参阅http://www.puffinwarellc.com/index.php/news-and-articles/articles/33-latent-semantic-analysis-tutorial.html?showall=1
于 2013-01-22T08:42:51.987 回答