Uses of Class
Util.VectorManager

Packages that use VectorManager
benchmark Classes that benchmark the system. 
cluster Classes that deal with the unsupervised clustering. 
SVM Executing SVM, and functions to test/benchmark SVM capability 
Util Lots of classes that are used throughout the engine, and could possibly be used in another project. 
websearch Classes for searching general web results. 
 

Uses of VectorManager in benchmark
 

Methods in benchmark with parameters of type VectorManager
 int[][] ClusterableReuters.getIdxSentences(VectorManager vm)
           
 void KnownReuters.readyDoc(VectorManager titleVM, VectorManager articleVm, java.lang.String source)
           
 void KnownReuters.readyDocLocally(VectorManager titleVM, VectorManager articleVm, java.lang.String source)
           
 

Constructors in benchmark with parameters of type VectorManager
ClusterableReuters(int id, java.lang.String text, VectorManager vm)
           
 

Uses of VectorManager in cluster
 

Methods in cluster with parameters of type VectorManager
static void PhraseFinder.findAndAddPhrases(boolean verbose, java.util.List<? extends ClusterDoc> docs, int vocabCutoff, java.util.List<Phrase> set, int phraseSize, VectorManager vm)
          Finds phrases and adds them to set
static void OntologyBasedPhraseFinder.findPhrasesOfSize(java.util.List<Phrase> set, java.util.List<TestDoc> docs, VectorManager vm, int[] phraseSizes, int cat, int cutoff)
           
static double[] TreeHelper.genFreqList(int idx, VectorManager vm, java.util.List<TestDoc> docs)
           
 int[][] ClusterDoc.getIdxSentences(VectorManager vm)
          Each entry represents the integer.
 

Uses of VectorManager in SVM
 

Methods in SVM with parameters of type VectorManager
 void SVMTrainable.readyDoc(VectorManager titleVM, VectorManager articleVm, java.lang.String source)
          The document needs to update the VectorManager with the feature counts
 void SVMTestable.readyDocLocally(VectorManager titleVM, VectorManager articleVm, java.lang.String source)
           
 

Uses of VectorManager in Util
 

Methods in Util with parameters of type VectorManager
 int[][] WindowedDoc.getIdxSentences(VectorManager vm)
           
 int[][] TestDoc.getIdxSentences(VectorManager vm)
           
 void TestDoc.readyDoc(VectorManager titlevm, VectorManager vm, java.lang.String src)
           
 void KnownDoc.readyDoc(VectorManager titlevm, VectorManager vm, java.lang.String src)
           
 void TestDoc.readyDocLocally(VectorManager titleVM, VectorManager articleVm, java.lang.String src)
           
 void KnownDoc.readyDocLocally(VectorManager titleVM, VectorManager articleVm, java.lang.String src)
           
 void TestDoc.readyTitleOnly(VectorManager titleVM)
           
 

Constructors in Util with parameters of type VectorManager
XMLDoc(java.lang.String wbid, VectorManager titleVM)
           
XMLDoc(java.lang.String wbid, VectorManager titlevm, VectorManager vm, boolean parseOnly, java.lang.String src, java.io.File xmlfile, java.io.File titleXmlFile)
           
XMLDoc(java.lang.String wbid, VectorManager titlevm, VectorManager vm, java.lang.String src)
           
XMLDoc(java.lang.String wbid, VectorManager titlevm, VectorManager vm, java.lang.String src, boolean parseOnly)
           
XMLDoc(java.lang.String wbid, VectorManager titlevm, VectorManager vm, java.lang.String src, java.io.File xmlfile, java.io.File titxmlFile)
           
 

Uses of VectorManager in websearch
 

Methods in websearch with parameters of type VectorManager
 int[][] SearchResultDoc.getIdxSentences(VectorManager vm)
           
 

Constructors in websearch with parameters of type VectorManager
SearchResultDoc(java.lang.String title, java.lang.String snippet, java.lang.String url, VectorManager vm)