
public static class COP.Parameterizer<V extends NumberVector<?>,D extends NumberDistance<D,?>> extends AbstractDistanceBasedAlgorithm.Parameterizer<V,D>
| Modifier and Type | Field and Description | 
|---|---|
| (package private) COP.DistanceDist | distDistance distributution assumption. | 
| static OptionID | DIST_IDDistribution assumption for distances. | 
| (package private) double | expectExpected amount of outliers. | 
| static OptionID | EXPECT_IDExpected share of outliers. | 
| (package private) int | kNumber of neighbors to be considered. | 
| static OptionID | K_IDParameter to specify the number of nearest neighbors of an object to be
 considered for computing its COP_SCORE, must be an integer greater than
 0. | 
| (package private) PCARunner<V> | pcaHolds the object performing the dependency derivation. | 
| static OptionID | PCARUNNER_IDClass to compute the PCA with. | 
distanceFunction| Constructor and Description | 
|---|
| COP.Parameterizer() | 
| Modifier and Type | Method and Description | 
|---|---|
| protected COP<V,D> | makeInstance()Make an instance after successful configuration. | 
| protected void | makeOptions(Parameterization config)Add all options. | 
configure, makepublic static final OptionID K_ID
 Key: -cop.k
 
public static final OptionID DIST_ID
 Key: -cop.dist
 
public static final OptionID PCARUNNER_ID
 Key: -cop.pcarunner
 
public static final OptionID EXPECT_ID
 Key: -cop.expect
 
 Default: 0.001
 
int k
PCARunner<V extends NumberVector<?>> pca
COP.DistanceDist dist
double expect
protected void makeOptions(Parameterization config)
AbstractParameterizermakeOptions in class AbstractDistanceBasedAlgorithm.Parameterizer<V extends NumberVector<?>,D extends NumberDistance<D,?>>config - Parameterization to add options to.protected COP<V,D> makeInstance()
AbstractParameterizermakeInstance in class AbstractParameterizer