Package elki.clustering.correlation
Class ORCLUS.Par
- java.lang.Object
-
- elki.clustering.AbstractProjectedClustering.Par
-
- elki.clustering.correlation.ORCLUS.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- ORCLUS
public static class ORCLUS.Par extends AbstractProjectedClustering.Par
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected doublealphaCluster reduction factorstatic OptionIDALPHA_IDParameter to specify the factor for reducing the number of current clusters in each iteration, must be an integer greater than 0 and less than 1.protected PCARunnerpcaPCA procedureprotected RandomFactoryrndRandom number generation.static OptionIDSEED_IDParameter to specify the random generator seed.
-
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.ORCLUSmake()Make an instance after successful configuration.
-
-
-
Field Detail
-
ALPHA_ID
public static final OptionID ALPHA_ID
Parameter to specify the factor for reducing the number of current clusters in each iteration, must be an integer greater than 0 and less than 1.
-
SEED_ID
public static final OptionID SEED_ID
Parameter to specify the random generator seed.
-
alpha
protected double alpha
Cluster reduction factor
-
rnd
protected RandomFactory rnd
Random number generation.
-
pca
protected PCARunner pca
PCA procedure
-
-
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.
- Parameters:
config- Parameterization
-
make
public ORCLUS 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.- Returns:
- a new instance
-
-