Uses of Interface
iglu.ir.VectorCreator

Packages that use VectorCreator
iglu.ir A set of classes for creating Information Retrieval programs. 
 

Uses of VectorCreator in iglu.ir
 

Classes in iglu.ir that implement VectorCreator
 class AbstractVectorCreator
          Implements some of the functionality of the vector creator and provides a convienence method for making produced vectors conform to the user's limitations on them.
 class FrequencyVectorCreator
          Sets keyword scores based on the frequency of the words.
 class GeneralVectorCreator
          Generates vectors using various standard indexing schemes.
 class JDBCVectorCreator
          Generates TFIDF vectors from a document set.
 class OrderVectorCreator
          Sets keyword scores based on the order of word occurance.
 class PhraseFrequencyVectorCreator
          Sets phrase scores based on the frequency of bigrams.
 class TFIDFVectorCreator
          Generates TFIDF vectors from a document set.
 class TrainableVectorCreator
           
 

Fields in iglu.ir declared as VectorCreator
(package private)  VectorCreator PrecisionRecall.vc
           
 

Constructors in iglu.ir with parameters of type VectorCreator
PrecisionRecall(IRPacket irPacket, VectorCreator vc, boolean index)
          Create a new PrecisionRecall object, using the RAMSearchEngine.
PrecisionRecall(SearchEngine searchEngine, IRPacket irPacket, VectorCreator vc, boolean index)