Package elki.clustering.correlation
Class HiCO.Par
- java.lang.Object
 - 
- elki.clustering.correlation.HiCO.Par
 
 
- 
- All Implemented Interfaces:
 Parameterizer
- Enclosing class:
 - HiCO
 
public static class HiCO.Par extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
 - Erich Schubert
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description (package private) doublealphaAlpha parameterstatic OptionIDALPHA_IDThe threshold for 'strong' eigenvectors: the 'strong' eigenvectors explain a portion of at least alpha of the total variance.(package private) doubledeltaDelta parameterstatic 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 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 OptionIDMU_IDParameter to specify the smoothing factor, must be an integer greater than 0.protected PCARunnerpcaPCA utility object. 
- 
Constructor Summary
Constructors Constructor Description Par() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(Parameterization config)Configure the class.HiCOmake()Make an instance after successful configuration. 
 - 
 
- 
- 
Field Detail
- 
MU_ID
public static final 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 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 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 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 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(Parameterization config)
Description copied from interface:ParameterizerConfigure the class.Note: the status is collected by the parameterization object, so that multiple errors may arise and be reported in one run.
- Specified by:
 configurein interfaceParameterizer- Parameters:
 config- Parameterization
 
- 
make
public HiCO make()
Description copied from interface:ParameterizerMake an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Objectas return type.- Specified by:
 makein interfaceParameterizer- Returns:
 - a new instance
 
 
 - 
 
 -