Package elki.clustering.correlation
Class ERiC.Par
- java.lang.Object
-
- elki.clustering.correlation.ERiC.Par
-
- All Implemented Interfaces:
elki.utilities.optionhandling.Parameterizer
- Enclosing class:
- ERiC
public static class ERiC.Par extends java.lang.Object implements elki.utilities.optionhandling.ParameterizerParameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description static elki.utilities.optionhandling.OptionIDDELTA_IDParameter to specify the threshold for approximate linear dependency: the strong eigenvectors of q are approximately linear dependent from the strong eigenvectors p if the following condition holds for all strong eigenvectors q_i of q (lambda_q < lambda_p): q_i' * M^check_p * q_i <= delta^2, must be a double equal to or greater than 0.static elki.utilities.optionhandling.OptionIDK_IDSize for the kNN neighborhood used in the PCA step of ERiC.protected ERiC.SettingssettingsThe settings to use.static elki.utilities.optionhandling.OptionIDTAU_IDParameter to specify the threshold for the maximum distance between two approximately linear dependent subspaces of two objects p and q (lambda_q < lambda_p) before considering them as parallel, must be a double equal to or greater than 0.
-
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)ERiCmake()
-
-
-
Field Detail
-
K_ID
public static final elki.utilities.optionhandling.OptionID K_ID
Size for the kNN neighborhood used in the PCA step of ERiC.
-
DELTA_ID
public static final elki.utilities.optionhandling.OptionID DELTA_ID
Parameter to specify the threshold for approximate linear dependency: the strong eigenvectors of q are approximately linear dependent from the strong eigenvectors p if the following condition holds for all strong eigenvectors q_i of q (lambda_q < lambda_p): q_i' * M^check_p * q_i <= delta^2, must be a double equal to or greater than 0.
-
TAU_ID
public static final elki.utilities.optionhandling.OptionID TAU_ID
Parameter to specify the threshold for the maximum distance between two approximately linear dependent subspaces of two objects p and q (lambda_q < lambda_p) before considering them as parallel, must be a double equal to or greater than 0.
-
settings
protected ERiC.Settings settings
The settings to use.
-
-
Method Detail
-
configure
public void configure(elki.utilities.optionhandling.parameterization.Parameterization config)
- Specified by:
configurein interfaceelki.utilities.optionhandling.Parameterizer
-
make
public ERiC make()
- Specified by:
makein interfaceelki.utilities.optionhandling.Parameterizer
-
-