Uses of Interface
org.knowceans.corpus.ITermCorpus

Packages that use ITermCorpus
org.knowceans.corpus   
org.knowceans.dirichlet.lda   
org.knowceans.dirichlet.sandbox   
 

Uses of ITermCorpus in org.knowceans.corpus
 

Subinterfaces of ITermCorpus in org.knowceans.corpus
 interface IRandomAccessTermCorpus
          IRandomAccessCorpus provides term corpus functionality that allows direct access to all fields in the corpus, i.e., the complete lists / map of indices can be read.
 

Classes in org.knowceans.corpus that implement ITermCorpus
 class AmqCorpus
          ActorMediaCorpus implements an AMQ corpus, i.e., a document corpus with added functionality for authors and queriers.
 class LuceneCorpus
          LuceneTermCorpus creates a TermCorpus interface around a lucene index.
 class LuceneMapCorpus
          LuceneTermCorpus creates a TermCorpus interface around a lucene index.
 class TermCorpus
          TermCorpusCps collects terms from different documents and creates a corpus from them with a one-to-one term <-> id assignment.
 

Uses of ITermCorpus in org.knowceans.dirichlet.lda
 

Methods in org.knowceans.dirichlet.lda with parameters of type ITermCorpus
protected  void LdaGibbsSampler.writeParameters(java.lang.String file, org.knowceans.util.Arguments a, ITermCorpus corpus)
          write statistics of the current run to a text file for later review
 

Constructors in org.knowceans.dirichlet.lda with parameters of type ITermCorpus
LdaGibbsSampler(ITermCorpus corpus, ExtLdaConfiguration conf)
          Initialise the corpus with
LdaGibbsSampler(ITermCorpus corpus, ExtLdaConfiguration conf, java.util.Random rand)
          Initialise the corpus with
LdaGibbsSampler(ITermCorpus corpus, LdaMarkovState state, ExtLdaConfiguration conf, java.util.Random rand)
          Initialise the sampler with an existing state.
 

Uses of ITermCorpus in org.knowceans.dirichlet.sandbox
 

Constructors in org.knowceans.dirichlet.sandbox with parameters of type ITermCorpus
LdaGibbsSamplerHyper(ITermCorpus corpus, ExtLdaConfiguration conf, java.util.Random rand)