Package elki.clustering.correlation
Class FourC.Settings.Par
- java.lang.Object
-
- elki.clustering.correlation.FourC.Settings.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- FourC.Settings
public static class FourC.Settings.Par extends java.lang.Object implements Parameterizer
Parameterization class for 4C settings.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description static doubleDEFAULT_DELTAThe default value for delta.static doubleKAPPA_DEFAULTDefault for kappa parameter.static OptionIDKAPPA_IDParameter Kappa: penalty for deviations in preferred dimensions.static OptionIDLAMBDA_IDParameter Lambda: maximum dimensionality allowed.(package private) FourC.SettingssettingsSettings storage.
-
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.java.lang.Objectmake()Make an instance after successful configuration.
-
-
-
Field Detail
-
DEFAULT_DELTA
public static final double DEFAULT_DELTA
The default value for delta.- See Also:
- Constant Field Values
-
KAPPA_ID
public static final OptionID KAPPA_ID
Parameter Kappa: penalty for deviations in preferred dimensions.
-
KAPPA_DEFAULT
public static final double KAPPA_DEFAULT
Default for kappa parameter.- See Also:
- Constant Field Values
-
LAMBDA_ID
public static final OptionID LAMBDA_ID
Parameter Lambda: maximum dimensionality allowed.
-
settings
FourC.Settings settings
Settings storage.
-
-
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 java.lang.Object 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
-
-