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 int
maxdim
Maximum dimensionality to search forstatic OptionID
MAXDIM_ID
Parameter with the maximum dimension to search forprivate int
minsize
Minimum cluster size.static OptionID
MINSIZE_ID
Parameter for the minimum cluster sizestatic OptionID
RANDOM_ID
Random seedingprivate RandomFactory
rnd
Random generatorstatic OptionID
SAMPLINGL_ID
Sampling intensity levelprivate int
samplingLevel
Sampling levelprivate double
threshold
Thresholdstatic OptionID
THRESHOLD_ID
Global significance threshold
-
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.LMCLUS
make()
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: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 LMCLUS 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
-
-