Uses of Class
org.knowceans.lda.LdaModel

Packages that use LdaModel
org.knowceans.lda   
 

Uses of LdaModel in org.knowceans.lda
 

Methods in org.knowceans.lda that return LdaModel
static LdaModel LdaEstimate.initialModel(java.lang.String start, Corpus corpus, int numTopics, double alpha)
          initializes class_word and class_total to reasonable beginnings.
static LdaModel LdaEstimate.runEm(java.lang.String start, java.lang.String directory, Corpus corpus)
          run_em
 

Methods in org.knowceans.lda with parameters of type LdaModel
static double LdaInference.computeLikelihood(Document doc, LdaModel model, double[][] phi, double[] varGamma)
           
static double LdaEstimate.docEm(Document doc, double[] gamma, LdaModel model, LdaModel nextModel)
          iterate_document
static double LdaInference.ldaInference(Document doc, LdaModel model, double[] varGamma, double[][] phi)
           
static void LdaAlpha.maximizeAlpha(double[][] gamma, LdaModel model, int numDocs)