Hidden Dirichlet Distribution Implementation (LDA)

Does anyone know if there is any implementation of the LDA algorithm (regardless of library or application) for the Win32 platform? Maybe in C / C ++ or in another language that can be compiled?

+3
source share
5 answers

Well, to be honest, I was just looking for the LDA because I was curious what it was, and the second hit was the C LDA implementation . It compiles fine with gcc, although some warnings appear. I don't know if it is clean ANSI C or not, but considering there is gcc for the available windows, this should not be a problem. If you have problems compiling, ask a specific question about this.

+3

gensim Python.

+3

:

Gibbs LDA ++ Sourceforge

plda

Tamás, , , , .

+2

The original LDA implementation was written by David Bley, and the source code (C) is still available on his website: http://www.cs.princeton.edu/~blei/topicmodeling.html as Lda-s. Other implementations are for LDA-based algorithms.

+1
source

We use DCA written in C, it scales well, has hyperparametric optimization.

You can also consider Mallet , written in Java, widely used.

0
source

All Articles