Uses of Interface
com.sun.labs.minion.classification.FeatureCluster

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

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

Classes in com.sun.labs.minion.classification that implement FeatureCluster
 class ContingencyFeatureCluster
          A cluster of contingency features
 class SimpleFeatureCluster
          A feature cluster containing a single term and a weight assigned by a standard term weighting funciton.
 class WeightedFeatureCluster
           
 

Fields in com.sun.labs.minion.classification declared as FeatureCluster
protected  FeatureCluster[] BigQuery.features
           
protected  FeatureCluster[] WeightedFeatureVector.v
          An array to hold the features clusters that make up our vector.
 

Fields in com.sun.labs.minion.classification with type parameters of type FeatureCluster
protected  java.util.Map<java.lang.String,FeatureCluster> KnowledgeSourceClusterer.clusterMap
          A map to hold the clusters keyed on roots
protected  java.util.HashMap<java.lang.String,FeatureCluster> LiteMorphClusterer.clusterMap
           
protected  java.util.Map<java.lang.String,FeatureCluster> MorphClusterer.clusterMap
          A map to hold the clusters keyed on roots
protected  java.util.SortedSet<FeatureCluster> FeatureClusterSet.contents
           
protected  java.util.Map<java.lang.String,FeatureCluster> FeatureClusterSet.quickMap
           
static java.util.Comparator<FeatureCluster> FeatureCluster.weightComparator
          A weight comparator for feature clusters.
 

Methods in com.sun.labs.minion.classification that return FeatureCluster
 FeatureCluster ContingencyFeatureCluster.copy()
          Create a new feature cluster that is a copy of the given feature cluster.
 FeatureCluster FeatureCluster.copy()
          Return a copy of this feature cluster
 FeatureCluster SimpleFeatureCluster.copy()
           
 FeatureCluster WeightedFeatureCluster.copy()
           
 FeatureCluster FeatureClusterSet.get(java.lang.String name)
          Gets the feature cluster with the given name.
 FeatureCluster ClassificationFeature.getCluster()
           
 FeatureCluster ClusterDiskPartition.getCluster(java.lang.String clusterName)
          Gets a cluster by name
 FeatureCluster WeightedFeatureVector.getCluster(java.lang.String name)
           
 FeatureCluster FeatureClusterSet.getContaining(Feature feature)
          Gets the feature cluster that contains the given feature.
 FeatureCluster FeatureClusterSet.getContaining(java.lang.String name)
          Gets the feature cluster that contains the given feature.
protected  FeatureCluster ClusterDiskPartition.makeCluster(DocKeyEntry docEntry)
           
 FeatureCluster ContingencyFeatureClusterer.newCluster()
           
 FeatureCluster FeatureClusterer.newCluster()
          A non-static factory method to create a feature cluster
 FeatureCluster SimpleClusterer.newCluster()
           
 FeatureCluster WeightedFeatureClusterer.newCluster()
           
 FeatureCluster[] FeatureClusterSet.toArray()
           
 

Methods in com.sun.labs.minion.classification that return types with arguments of type FeatureCluster
 java.util.SortedSet<FeatureCluster> FeatureClusterSet.getContents()
          Gets the contents of this cluster as a SortedSet
 java.util.Iterator<FeatureCluster> FeatureClusterSet.iterator()
          Gets an iterator over the cluster set.
 

Methods in com.sun.labs.minion.classification with parameters of type FeatureCluster
 void FeatureClusterSet.add(FeatureCluster cluster)
          Adds a feature cluster to this set.
 void WeightedFeatureVector.add(FeatureCluster f)
          Adds a feature to this vector.
 void BigQuery.addFeatureCluster(FeatureCluster cluster)
          Adds a cluster to the helper.
 int ClusterWeightComparator.compare(FeatureCluster fc1, FeatureCluster fc2)
          Compares two weighted features by their weights.
 int ContingencyFeatureCluster.compareTo(FeatureCluster fc)
          Compares to feature clusters on the basis of their names
 int SimpleFeatureCluster.compareTo(FeatureCluster fc)
           
 int WeightedFeatureCluster.compareTo(FeatureCluster o)
           
 void ContingencyFeatureCluster.merge(FeatureCluster other)
           
 void FeatureCluster.merge(FeatureCluster other)
          Merge another feature cluster into this one, preventing duplicates.
 void SimpleFeatureCluster.merge(FeatureCluster other)
           
 void WeightedFeatureCluster.merge(FeatureCluster other)
           
 

Constructors in com.sun.labs.minion.classification with parameters of type FeatureCluster
ClassificationFeature(FeatureCluster fc)
           
 

Constructor parameters in com.sun.labs.minion.classification with type arguments of type FeatureCluster
FeatureClusterSet(java.util.Collection<FeatureCluster> clusters)
          Creates a FeatureClusterSet from the contents of a Collection.
WeightedFeatureVector(java.util.Collection<FeatureCluster> c)
          Creates a feature vector from a collection of feature clusters.