Uses of Class
pitt.search.semanticvectors.ObjectVector

Packages that use ObjectVector
pitt.search.semanticvectors Semantic Vector indexes, created by applying a Random Projection algorithm to term-document matrices created using Apache Lucene. 
 

Uses of ObjectVector in pitt.search.semanticvectors
 

Methods in pitt.search.semanticvectors that return ObjectVector
static ObjectVector[] Search.getSearchResultVectors(java.lang.String[] args, int numResults)
          Search wrapper that returns the list of ObjectVectors.
 ObjectVector VectorStoreReaderLucene.VectorEnumeration.nextElement()
           
 ObjectVector VectorStoreReaderText.VectorEnumerationText.nextElement()
           
 ObjectVector VectorStoreSparseRAM.SparseVectorEnumeration.nextElement()
           
static ObjectVector VectorStoreReaderText.parseVectorLine(java.lang.String line)
          Returns an object vector from a text line.
 

Methods in pitt.search.semanticvectors that return types with arguments of type ObjectVector
 java.util.Enumeration<ObjectVector> VectorStore.getAllVectors()
           
 java.util.Enumeration<ObjectVector> VectorStoreSparseRAM.getAllVectors()
           
 

Methods in pitt.search.semanticvectors with parameters of type ObjectVector
static void ClusterVectorStore.clusterOverlapMeasure(int[] clusterIDs, ObjectVector[] vectors)
           
static int[] ClusterResults.kMeansCluster(ObjectVector[] objectVectors, int numClusters)
          Simple k-means clustering algorithm.