Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Topic Modeling in Mallet; Documentation

I'm looking for some good documentation for Mallet, specifically for its classes related to topic modeling. I've looked at the Java docs but they aren't too helpful. For example:

estimate

public void estimate()
              throws java.io.IOException

    Throws:
        java.io.IOException

still don't know what this method does (please let me know if you do...). Also, if you've got some experience with mallet and can help me print the topics learned by a topic model (or the word groups representing the topics) please let me know. All advice welcome!

I've seen the method getTopWords, but I haven't been able to call it...perhaps a mising jar?

like image 384
akobre01 Avatar asked Feb 25 '11 17:02

akobre01


1 Answers

When you say "Java docs" are you talking about the API documentation? It's pretty extensive regarding the code, but doesn't tell you much about procedure (IE: do this step then this step...). If you're looking for a tutorial, this pdf by the head developer is the closest I know of. The part on topic modelling starts at slide 96.

like image 70
Turnsole Avatar answered Oct 30 '22 08:10

Turnsole