ClusterType
- Type of Cluster<DataType>
used in theaceous learn()
method.DataType
- The algorithm operates on a Collection<DataType>
, so
DataType
will be something like Vector or String.@CodeReview(reviewer="Kevin R. Dixon", date="2008-07-23", changesNeeded=false, comments={"Now extends AbstractRandomized","Cleaned up javadoc a little bit with code annotations.","Otherwise, looks fine."}) public class GreedyClusterInitializer<ClusterType extends Cluster<DataType>,DataType> extends AbstractMinDistanceFixedClusterInitializer<ClusterType,DataType>
creator, random
divergenceFunction
Constructor and Description |
---|
GreedyClusterInitializer()
Creates a new, empty instance of
GreedyClusterInitializer . |
GreedyClusterInitializer(DivergenceFunction<? super DataType,? super DataType> divergenceFunction,
ClusterCreator<ClusterType,DataType> creator,
java.util.Random random)
Creates a new instance of
GreedyClusterInitializer . |
Modifier and Type | Method and Description |
---|---|
GreedyClusterInitializer<ClusterType,DataType> |
clone()
This makes public the clone method on the
Object class and
removes the exception that it throws. |
protected int |
selectNextClusterIndex(double[] minDistances,
boolean[] selected)
Select the index for the next cluster based on the given minimum
distances and array indicating which clusters have already been selected.
|
getCreator, getRandom, initializeClusters, setCreator, setRandom
getDivergenceFunction, setDivergenceFunction
public GreedyClusterInitializer()
GreedyClusterInitializer
.public GreedyClusterInitializer(DivergenceFunction<? super DataType,? super DataType> divergenceFunction, ClusterCreator<ClusterType,DataType> creator, java.util.Random random)
GreedyClusterInitializer
.divergenceFunction
- The divergence function to use.creator
- The cluster creator to use.random
- The random number generator to use.public GreedyClusterInitializer<ClusterType,DataType> clone()
AbstractCloneableSerializable
Object
class and
removes the exception that it throws. Its default behavior is to
automatically create a clone of the exact type of object that the
clone is called on and to copy all primitives but to keep all references,
which means it is a shallow copy.
Extensions of this class may want to override this method (but call
super.clone()
to implement a "smart copy". That is, to target
the most common use case for creating a copy of the object. Because of
the default behavior being a shallow copy, extending classes only need
to handle fields that need to have a deeper copy (or those that need to
be reset). Some of the methods in ObjectUtil
may be helpful in
implementing a custom clone method.
Note: The contract of this method is that you must use
super.clone()
as the basis for your implementation.clone
in interface CloneableSerializable
clone
in class AbstractMinDistanceFixedClusterInitializer<ClusterType extends Cluster<DataType>,DataType>
protected int selectNextClusterIndex(double[] minDistances, boolean[] selected)
AbstractMinDistanceFixedClusterInitializer
selectNextClusterIndex
in class AbstractMinDistanceFixedClusterInitializer<ClusterType extends Cluster<DataType>,DataType>
minDistances
- The array of minimum distances.selected
- The array corresponding to whether or not an item has already
been selected.