Package elki.clustering.subspace
Class DOC.Par
- java.lang.Object
-
- elki.clustering.subspace.DOC.Par
-
- All Implemented Interfaces:
Parameterizer
- Direct Known Subclasses:
FastDOC.Par
- Enclosing class:
- DOC
public static class DOC.Par extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Florian Nuecke
-
-
Field Summary
Fields Modifier and Type Field Description protected doublealphaRelative density threshold parameter Alpha.static OptionIDALPHA_IDRelative density threshold parameter Alpha.protected doublebetaBalancing parameter for importance of points vs. dimensionsstatic OptionIDBETA_IDBalancing parameter for importance of points vs. dimensionsprotected RandomFactoryrandomRandom seeding factory.static OptionIDRANDOM_IDRandom seeding parameter.protected doublewHalf width parameter.static OptionIDW_IDHalf width parameter.
-
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.DOCmake()Make an instance after successful configuration.
-
-
-
Field Detail
-
ALPHA_ID
public static final OptionID ALPHA_ID
Relative density threshold parameter Alpha.
-
BETA_ID
public static final OptionID BETA_ID
Balancing parameter for importance of points vs. dimensions
-
W_ID
public static final OptionID W_ID
Half width parameter.
-
RANDOM_ID
public static final OptionID RANDOM_ID
Random seeding parameter.
-
alpha
protected double alpha
Relative density threshold parameter Alpha.
-
beta
protected double beta
Balancing parameter for importance of points vs. dimensions
-
w
protected double w
Half width parameter.
-
random
protected RandomFactory random
Random seeding factory.
-
-
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 DOC 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
-
-