Package elki.clustering.subspace
Class PROCLUS.Par
- java.lang.Object
-
- elki.clustering.AbstractProjectedClustering.Par
-
- elki.clustering.subspace.PROCLUS.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- PROCLUS
public static class PROCLUS.Par extends AbstractProjectedClustering.Par
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected int
m_i
Multiplier for the initial number of medoids.static OptionID
M_I_ID
Parameter to specify the multiplier for the initial number of medoids, must be an integer greater than 0.protected RandomFactory
rnd
Random generatorstatic OptionID
SEED_ID
Parameter 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 void
configure(Parameterization config)
Configure the class.PROCLUS
make()
Make an instance after successful configuration.
-
-
-
Field Detail
-
M_I_ID
public static final OptionID M_I_ID
Parameter to specify the multiplier for the initial number of medoids, must be an integer greater than 0.
-
SEED_ID
public static final OptionID SEED_ID
Parameter to specify the random generator seed.
-
m_i
protected int m_i
Multiplier for the initial number of medoids.
-
rnd
protected 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.
- Parameters:
config
- Parameterization
-
make
public PROCLUS 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.- Returns:
- a new instance
-
-