Uses of Class
tml.vectorspace.TermWeightingException

Packages that use TermWeightingException
tml.corpus Implements all the classes required for corpora management as Bags of Words, it also includes NLP for sentences. 
tml.vectorspace Implements a Vector Space Model, that can be later transformed using Latent Semantic Analysis. 
 

Uses of TermWeightingException in tml.corpus
 

Methods in tml.corpus that throw TermWeightingException
 void SimpleCorpus.load()
          Loads the corpus (if not loaded automatically).
 void TextDocument.load(Repository repository)
          Loads the corpora for the TextDocument with all the parameters that the document has set.
 void SentenceCorpus.load(Repository storage)
           
 void Corpus.load(Repository repository)
          Loads the content of the documents in the query and creates the term-doc matrix
 void SimpleCorpus.loadTfIdfNormalised()
           
 

Constructors in tml.corpus that throw TermWeightingException
SimpleCorpus(java.lang.String pathToDocuments, java.lang.String pathToRepository)
           
SimpleCorpus(java.lang.String pathToDocuments, java.lang.String pathToRepository, boolean load)
           
 

Uses of TermWeightingException in tml.vectorspace
 

Methods in tml.vectorspace that throw TermWeightingException
 Jama.Matrix TermWeighting.process(Jama.Matrix termdoc)