Package elki.clustering
Class AbstractProjectedClustering.Par
- java.lang.Object
-
- elki.clustering.AbstractProjectedClustering.Par
-
- All Implemented Interfaces:
Parameterizer
- Direct Known Subclasses:
ORCLUS.Par
,PROCLUS.Par
- Enclosing class:
- AbstractProjectedClustering<R extends Clustering<?>>
public abstract static class AbstractProjectedClustering.Par extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected int
k
The number of clusters to findprotected int
k_i
Multiplier for the number of initial seedsstatic OptionID
K_I_ID
Parameter to specify the multiplier for the initial number of seeds, must be an integer greater than 0.static OptionID
K_ID
Parameter to specify the number of clusters to find, must be an integer greater than 0.protected int
l
Dimensionality of clusters to findstatic OptionID
L_ID
Parameter to specify the dimensionality of the clusters to find, must be an integer greater than 0.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface elki.utilities.optionhandling.Parameterizer
configure, make
-
-
-
-
Field Detail
-
K_ID
public static final OptionID K_ID
Parameter to specify the number of clusters to find, must be an integer greater than 0.
-
K_I_ID
public static final OptionID K_I_ID
Parameter to specify the multiplier for the initial number of seeds, must be an integer greater than 0.
-
L_ID
public static final OptionID L_ID
Parameter to specify the dimensionality of the clusters to find, must be an integer greater than 0.
-
k
protected int k
The number of clusters to find
-
k_i
protected int k_i
Multiplier for the number of initial seeds
-
l
protected int l
Dimensionality of clusters to find
-
-