Uses of Interface
gr.demokritos.iit.jinsect.documentModel.ITextPrint

Packages that use ITextPrint
gr.demokritos.iit.jinsect.documentModel   
gr.demokritos.iit.jinsect.documentModel.documentTypes   
gr.demokritos.iit.jinsect.documentModel.representations   
 

Uses of ITextPrint in gr.demokritos.iit.jinsect.documentModel
 

Subinterfaces of ITextPrint in gr.demokritos.iit.jinsect.documentModel
 interface ILoadableTextPrint
          This interface describes a TextPrint that can be loaded from a file.
 

Classes in gr.demokritos.iit.jinsect.documentModel that implement ITextPrint
 class TextPrintImpl
          This class implements the ITextPrint interface, with default implementations.
 

Uses of ITextPrint in gr.demokritos.iit.jinsect.documentModel.documentTypes
 

Classes in gr.demokritos.iit.jinsect.documentModel.documentTypes that implement ITextPrint
 class NGramCategory
          Describes objects that represent sets of documents, in an overall n-gram document representation.
 class NGramDistroDocument
          An NGramDocument the n-gram graph representation of which includes distributional information for n-gram neighbourhoods (instead of the single numbers of the NGramDocument class).
 class NGramDocument
          A dual representation of a document, using both a histogram and an n-gram graph representation for a given text.
 class NGramGaussNormSymWinDocument
          An NGramDocument, which uses the Gauss-normalized approach on n-gram neighbourhood calculations.
 class NGramHistoDocument
          This class is identical to the NGramDocument class, except that the graph aspect of the document is ignored: no data is loaded, and the setDataString method does not affect the graph.
 class NGramSymWinDocument
           
 class SimpleTextCategory
           
 class SimpleTextDistroDocument
           
 class SimpleTextDocument
           
 class SimpleTextHistoDocument
           
 

Methods in gr.demokritos.iit.jinsect.documentModel.documentTypes with parameters of type ITextPrint
 void NGramCategory.mergeWith(ITextPrint tpData)
          Merges a given document (ITextPrint descendant) into the category.
 void SimpleTextCategory.mergeWith(ITextPrint tpData)
           
 void NGramCategory.mergeWith(ITextPrint tpData, double fLearningRate)
          Merges a given document (ITextPrint descendant) into the category, given a learning rate..
 void NGramDistroDocument.mergeWith(ITextPrint tpData, double fLearningRate)
           
 void NGramDocument.mergeWith(ITextPrint tpData, double fLearningRate)
          Merges the histogram and the graph of the object with the corresponding representations of another ITextPrint object, given a learning rate.
 void SimpleTextCategory.mergeWith(ITextPrint tpData, double fLearningRate)
           
 void SimpleTextDistroDocument.mergeWith(ITextPrint tpData, double fLearningRate)
           
 void SimpleTextDocument.mergeWith(ITextPrint tpData, double fLearningRate)
           
 

Uses of ITextPrint in gr.demokritos.iit.jinsect.documentModel.representations
 

Classes in gr.demokritos.iit.jinsect.documentModel.representations that implement ITextPrint
 class NGramGaussNormDocument