Package elki.clustering.subspace
Class HiSC.Par
- java.lang.Object
-
- elki.clustering.subspace.HiSC.Par
-
- All Implemented Interfaces:
elki.utilities.optionhandling.Parameterizer
- Enclosing class:
- HiSC
public static class HiSC.Par extends java.lang.Object implements elki.utilities.optionhandling.ParameterizerParameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected doublealphaThe maximum absolute variance along a coordinate axis.static elki.utilities.optionhandling.OptionIDALPHA_IDThe maximum absolute variance along a coordinate axis.static doubleDEFAULT_ALPHAThe default value for alpha.static elki.utilities.optionhandling.OptionIDEPSILON_IDParameter to specify the maximum distance between two vectors with equal preference vectors before considering them as parallel, must be a double equal to or greater than 0.protected intkThe number of nearest neighbors considered to determine the preference vector.static elki.utilities.optionhandling.OptionIDK_IDThe number of nearest neighbors considered to determine the preference vector.
-
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)HiSCmake()
-
-
-
Field Detail
-
EPSILON_ID
public static final elki.utilities.optionhandling.OptionID EPSILON_ID
Parameter to specify the maximum distance between two vectors with equal preference vectors before considering them as parallel, must be a double equal to or greater than 0.
-
ALPHA_ID
public static final elki.utilities.optionhandling.OptionID ALPHA_ID
The maximum absolute variance along a coordinate axis. Must be in the range of [0.0, 1.0).
-
DEFAULT_ALPHA
public static final double DEFAULT_ALPHA
The default value for alpha.- See Also:
- Constant Field Values
-
K_ID
public static final elki.utilities.optionhandling.OptionID K_ID
The number of nearest neighbors considered to determine the preference vector. If this value is not defined, k is set to three times of the dimensionality of the database objects.
-
alpha
protected double alpha
The maximum absolute variance along a coordinate axis.
-
k
protected int k
The number of nearest neighbors considered to determine the preference vector.
-
-
Method Detail
-
configure
public void configure(elki.utilities.optionhandling.parameterization.Parameterization config)
- Specified by:
configurein interfaceelki.utilities.optionhandling.Parameterizer
-
make
public HiSC make()
- Specified by:
makein interfaceelki.utilities.optionhandling.Parameterizer
-
-