Uses of Class
com.sun.labs.minion.classification.WeightedFeatureVector

Packages that use WeightedFeatureVector
com.sun.labs.minion.classification Provides the automatic document classification functionality in Minion. 
 

Uses of WeightedFeatureVector in com.sun.labs.minion.classification
 

Methods in com.sun.labs.minion.classification that return WeightedFeatureVector
 WeightedFeatureVector WeightedFeatureVector.add(WeightedFeatureVector fv)
          Adds a feature vector to this vector, returning a new vector.
 WeightedFeatureVector WeightedFeatureVector.add(WeightedFeatureVector fv, float fac1, float fac2, boolean dropNegative)
          Adds a feature vector to this vector, returning a new vector.
static WeightedFeatureVector WeightedFeatureVector.getCrossPartition(java.util.List vecs, FeatureClusterSet clusters)
          Given a number of partition-specific feature vectors, generate a new, cross-partition feature vector.
 WeightedFeatureVector WeightedFeatureVector.mult(float s)
          Multiplies a feature vector by a scalar, producing a new vector.
 WeightedFeatureVector WeightedFeatureVector.sub(WeightedFeatureVector fv)
          Subtracts a feature vector from this vector, returning a new vector.
 WeightedFeatureVector WeightedFeatureVector.sub(WeightedFeatureVector fv, boolean dropNegative)
          Subtracts a feature vector from this vector, returning a new vector.
 WeightedFeatureVector WeightedFeatureVector.sub(WeightedFeatureVector fv, float fac1, float fac2, boolean dropNegative)
          Subtracts a feature vector from this vector, returning a new vector.
 

Methods in com.sun.labs.minion.classification with parameters of type WeightedFeatureVector
 WeightedFeatureVector WeightedFeatureVector.add(WeightedFeatureVector fv)
          Adds a feature vector to this vector, returning a new vector.
 WeightedFeatureVector WeightedFeatureVector.add(WeightedFeatureVector fv, float fac1, float fac2, boolean dropNegative)
          Adds a feature vector to this vector, returning a new vector.
 float WeightedFeatureVector.dot(WeightedFeatureVector fv)
          Calculate the dot product of this feature vector and another feature vector.
protected  Rocchio.FQR Rocchio.runFeedback(FeatureClusterSet cwFeatures, WeightedFeatureVector opt, java.util.List queryZone, int nRel, WeightingFunction wf, WeightingComponents wc)
          Runs a feedback query with the current estimate of the optimal query.
 WeightedFeatureVector WeightedFeatureVector.sub(WeightedFeatureVector fv)
          Subtracts a feature vector from this vector, returning a new vector.
 WeightedFeatureVector WeightedFeatureVector.sub(WeightedFeatureVector fv, boolean dropNegative)
          Subtracts a feature vector from this vector, returning a new vector.
 WeightedFeatureVector WeightedFeatureVector.sub(WeightedFeatureVector fv, float fac1, float fac2, boolean dropNegative)
          Subtracts a feature vector from this vector, returning a new vector.
 

Constructors in com.sun.labs.minion.classification with parameters of type WeightedFeatureVector
WeightedFeatureVector(WeightedFeatureVector fv)
          Creates a feature vector that's a copy of the given vector.