4

I'm looking for some LDA implementation. I know about this one, MALLET but it is coded in Java and I need some more performant.

Can someone give me some reference?

Momo
  • 8,839
  • 3
  • 46
  • 59
Aslan986
  • 728
  • 2
  • 7
  • 18

1 Answers1

4

You can use the original C++ code of the LDA inventors Blei et al.

Also quite fast is GibbsLDA (written in C and C++).

If you want to parallelize it you might want to check out plda (C++).

Momo
  • 8,839
  • 3
  • 46
  • 59