3

Is there a C++ library for LSA/LSI? Preferably MIT, BSD, Apache,... license - no GPL.

snøreven
  • 1,904
  • 2
  • 19
  • 39
  • If you're on OS X you may be able to use the built-in latent semantic mapping C library: https://developer.apple.com/library/mac/#documentation/TextFonts/Reference/LatentSemanticMapping/index.html – bames53 May 21 '12 at 12:42
  • I need something platform independent. – snøreven May 21 '12 at 12:47

1 Answers1

2

There are several C/C++ implementations of Latent Diriclet Allocation (LDA), Latent Semantic Analysis (LSA) and Topic Modelling listed on David Blei's page. http://www.cs.columbia.edu/~blei/topicmodeling.html and on Berry and Dumai's page http://web.eecs.utk.edu/research/lsi/

Here's a short-list of C/C++ implementations:

If you like a python version with tutorial: see http://www.puffinwarellc.com/index.php/news-and-articles/articles/33-latent-semantic-analysis-tutorial.html?showall=1

alvas
  • 115,346
  • 109
  • 446
  • 738
  • Thanks for references, but David Blei's page and Python's tutorial link is broken. – Emadpres Dec 27 '17 at 20:21
  • 1
    Ah, that's because he moved to Columbia from Princeton =) http://www.cs.columbia.edu/~blei/topicmodeling.html – alvas Dec 28 '17 at 01:10