Package elki.clustering.correlation
Class LMCLUS.Par
- java.lang.Object
-
- elki.clustering.correlation.LMCLUS.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- LMCLUS
public static class LMCLUS.Par extends java.lang.Object implements Parameterizer
Parameterization class- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description private intmaxdimMaximum dimensionality to search forstatic OptionIDMAXDIM_IDParameter with the maximum dimension to search forprivate intminsizeMinimum cluster size.static OptionIDMINSIZE_IDParameter for the minimum cluster sizestatic OptionIDRANDOM_IDRandom seedingprivate RandomFactoryrndRandom generatorstatic OptionIDSAMPLINGL_IDSampling intensity levelprivate intsamplingLevelSampling levelprivate doublethresholdThresholdstatic OptionIDTHRESHOLD_IDGlobal significance threshold
-
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.LMCLUSmake()Make an instance after successful configuration.
-
-
-
Field Detail
-
MAXDIM_ID
public static final OptionID MAXDIM_ID
Parameter with the maximum dimension to search for
-
MINSIZE_ID
public static final OptionID MINSIZE_ID
Parameter for the minimum cluster size
-
SAMPLINGL_ID
public static final OptionID SAMPLINGL_ID
Sampling intensity level
-
THRESHOLD_ID
public static final OptionID THRESHOLD_ID
Global significance threshold
-
RANDOM_ID
public static final OptionID RANDOM_ID
Random seeding
-
maxdim
private int maxdim
Maximum dimensionality to search for
-
minsize
private int minsize
Minimum cluster size.
-
samplingLevel
private int samplingLevel
Sampling level
-
threshold
private double threshold
Threshold
-
rnd
private RandomFactory rnd
Random generator
-
-
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 LMCLUS 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
-
-