Package elki.clustering.correlation
Class HiCO.Par
- java.lang.Object
-
- elki.clustering.correlation.HiCO.Par
-
- All Implemented Interfaces:
elki.utilities.optionhandling.Parameterizer
- Enclosing class:
- HiCO
public static class HiCO.Par extends java.lang.Object implements elki.utilities.optionhandling.ParameterizerParameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description (package private) doublealphaAlpha parameterstatic elki.utilities.optionhandling.OptionIDALPHA_IDThe threshold for 'strong' eigenvectors: the 'strong' eigenvectors explain a portion of at least alpha of the total variance.(package private) doubledeltaDelta parameterstatic elki.utilities.optionhandling.OptionIDDELTA_IDParameter to specify the threshold of a distance between a vector q and a given space that indicates that q adds a new dimension to the space, must be a double equal to or greater than 0.protected intkNumber of neighbors to query.static elki.utilities.optionhandling.OptionIDK_IDOptional parameter to specify the number of nearest neighbors considered in the PCA, must be an integer greater than 0.(package private) intmuMu parameterstatic elki.utilities.optionhandling.OptionIDMU_IDParameter to specify the smoothing factor, must be an integer greater than 0.protected elki.math.linearalgebra.pca.PCARunnerpcaPCA utility object.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(elki.utilities.optionhandling.parameterization.Parameterization config)HiCOmake()
-
-
-
Field Detail
-
MU_ID
public static final elki.utilities.optionhandling.OptionID MU_ID
Parameter to specify the smoothing factor, must be an integer greater than 0. The {linkMU_ID-nearest neighbor is used to compute the correlation reachability of an object.
-
K_ID
public static final elki.utilities.optionhandling.OptionID K_ID
Optional parameter to specify the number of nearest neighbors considered in the PCA, must be an integer greater than 0. If this parameter is not set, k is set to the value ofMU_ID.
-
DELTA_ID
public static final elki.utilities.optionhandling.OptionID DELTA_ID
Parameter to specify the threshold of a distance between a vector q and a given space that indicates that q adds a new dimension to the space, must be a double equal to or greater than 0.
-
ALPHA_ID
public static final elki.utilities.optionhandling.OptionID ALPHA_ID
The threshold for 'strong' eigenvectors: the 'strong' eigenvectors explain a portion of at least alpha of the total variance.
-
k
protected int k
Number of neighbors to query.
-
pca
protected elki.math.linearalgebra.pca.PCARunner pca
PCA utility object.
-
mu
int mu
Mu parameter
-
alpha
double alpha
Alpha parameter
-
delta
double delta
Delta parameter
-
-
Method Detail
-
configure
public void configure(elki.utilities.optionhandling.parameterization.Parameterization config)
- Specified by:
configurein interfaceelki.utilities.optionhandling.Parameterizer
-
make
public HiCO make()
- Specified by:
makein interfaceelki.utilities.optionhandling.Parameterizer
-
-