Package elki.clustering
Class AbstractProjectedClustering.Par
- java.lang.Object
-
- elki.clustering.AbstractProjectedClustering.Par
-
- All Implemented Interfaces:
elki.utilities.optionhandling.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 elki.utilities.optionhandling.ParameterizerParameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected intkThe number of clusters to findprotected intk_iMultiplier for the number of initial seedsstatic elki.utilities.optionhandling.OptionIDK_I_IDParameter to specify the multiplier for the initial number of seeds, must be an integer greater than 0.static elki.utilities.optionhandling.OptionIDK_IDParameter to specify the number of clusters to find, must be an integer greater than 0.protected intlDimensionality of clusters to findstatic elki.utilities.optionhandling.OptionIDL_IDParameter to specify the dimensionality of the clusters to find, must be an integer greater than 0.
-
Constructor Summary
Constructors Constructor Description Par()
-
-
-
Field Detail
-
K_ID
public static final elki.utilities.optionhandling.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 elki.utilities.optionhandling.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 elki.utilities.optionhandling.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
-
-