Package elki.outlier.clustering
Class EMOutlier.Par<V extends NumberVector>
- java.lang.Object
-
- elki.outlier.clustering.EMOutlier.Par<V>
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- EMOutlier<V extends NumberVector>
public static class EMOutlier.Par<V extends NumberVector> extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected doubledeltaStopping thresholdprotected intkNumber of clusters.protected intmaxiterMaximum number of iterations.protected EMClusterModelFactory<V,?>mfactoryCluster model factory.protected intminiterMinimum number of iterations.(package private) doublepriorPrior to enable MAP estimation (use 0 for MLE)
-
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.EMOutlier<V>make()Make an instance after successful configuration.
-
-
-
Field Detail
-
k
protected int k
Number of clusters.
-
delta
protected double delta
Stopping threshold
-
mfactory
protected EMClusterModelFactory<V extends NumberVector,?> mfactory
Cluster model factory.
-
miniter
protected int miniter
Minimum number of iterations.
-
maxiter
protected int maxiter
Maximum number of iterations.
-
prior
double prior
Prior to enable MAP estimation (use 0 for MLE)
-
-
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 EMOutlier<V> 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
-
-