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 double
DEFAULT_DELTA
The default value for delta.static double
KAPPA_DEFAULT
Default for kappa parameter.static OptionID
KAPPA_ID
Parameter Kappa: penalty for deviations in preferred dimensions.static OptionID
LAMBDA_ID
Parameter Lambda: maximum dimensionality allowed.(package private) FourC.Settings
settings
Settings storage.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(Parameterization config)
Configure the class.java.lang.Object
make()
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:Parameterizer
Configure 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:
configure
in interfaceParameterizer
- Parameters:
config
- Parameterization
-
make
public java.lang.Object make()
Description copied from interface:Parameterizer
Make an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Object
as return type.- Specified by:
make
in interfaceParameterizer
- Returns:
- a new instance
-
-