Uses of Class
tml.corpus.Corpus

Packages that use Corpus
tml.corpus Implements all the classes required for corpora management as Bags of Words, it also includes NLP for sentences. 
tml.utils Implements methods that are not directly related to pure TM, such as NLP parsing and matrix management. 
tml.vectorspace Implements a Vector Space Model, that can be later transformed using Latent Semantic Analysis. 
tml.vectorspace.operations Operations are predefined sets of interesting information that can be obtained from a Semantic Space. 
tml.vectorspace.operations.summarization   
 

Uses of Corpus in tml.corpus
 

Subclasses of Corpus in tml.corpus
 class ParagraphCorpus
          Corpus that represents the paragraphs of a TextDocument
 class RepositoryCorpus
          This class represents a corpus with all the documents in the repository
 class SearchResultsCorpus
          This class represents a general corpus where any search criteria can be used
 class SentenceCorpus
          Class representing a corpus formed with the sentences of a document
 

Methods in tml.corpus that return Corpus
 Corpus TextPassage.getCorpus()
           
 Corpus SimpleCorpus.getCorpus()
           
 Corpus Dictionary.getCorpus()
          Gets the Corpus to which the Dictionary belongs
 Corpus Corpus.projectCorpus(Corpus corpusToProject)
          This method projects a Corpus into another one.
 

Methods in tml.corpus with parameters of type Corpus
 Corpus Corpus.projectCorpus(Corpus corpusToProject)
          This method projects a Corpus into another one.
 

Constructors in tml.corpus with parameters of type Corpus
Dictionary(Corpus corpus)
          Basic constructor of a Dictionary, initialises the list and index of Terms
TextPassage(int id, Corpus corpus, java.lang.String content, java.lang.String title, java.lang.String url, java.lang.String type, java.lang.String externalId)
          Creates a new instance of a TextPassage.
 

Uses of Corpus in tml.utils
 

Methods in tml.utils with parameters of type Corpus
 void LanczosSVDPACKCUtils.runLanczos(Corpus corpus)
           
 void LanczosSVDLIBCUtils.runLanczos(Corpus corpus, java.lang.String svdFilename)
           
 

Uses of Corpus in tml.vectorspace
 

Methods in tml.vectorspace that return Corpus
 Corpus SemanticSpace.getCorpus()
           
 

Methods in tml.vectorspace with parameters of type Corpus
 void SemanticSpace.setCorpus(Corpus corpus)
           
 

Constructors in tml.vectorspace with parameters of type Corpus
SemanticSpace(Corpus sourceCorpus)
          Creates a new SemanticSpace from a Corpus.
TermWeighting(Corpus corpus)
           
 

Uses of Corpus in tml.vectorspace.operations
 

Methods in tml.vectorspace.operations that return Corpus
 Corpus Operation.getBackgroundKnowledgeCorpus()
           
 Corpus AbstractOperation.getBackgroundKnowledgeCorpus()
           
 Corpus Operation.getCorpus()
           
 Corpus AbstractOperation.getCorpus()
           
 

Methods in tml.vectorspace.operations with parameters of type Corpus
 void Operation.setBackgroundKnowledgeCorpus(Corpus backgroundKnowledgeCorpus)
           
 void AbstractOperation.setBackgroundKnowledgeCorpus(Corpus backgroundKnowledgeCorpus)
           
 void Operation.setCorpus(Corpus corpus)
           
 void AbstractOperation.setCorpus(Corpus corpus)
           
 

Constructors in tml.vectorspace.operations with parameters of type Corpus
AbstractOperation(Corpus corpus)
          Creates a new instance with a corpus ready
 

Uses of Corpus in tml.vectorspace.operations.summarization
 

Methods in tml.vectorspace.operations.summarization with parameters of type Corpus
 void LatentSemanticAnalysisSummarization.setCorpus(Corpus corpus)