Package elki.outlier.lof
Class ALOCI.Par<O extends elki.data.NumberVector>
- java.lang.Object
-
- elki.outlier.lof.ALOCI.Par<O>
-
- All Implemented Interfaces:
elki.utilities.optionhandling.Parameterizer
public static class ALOCI.Par<O extends elki.data.NumberVector> extends java.lang.Object implements elki.utilities.optionhandling.ParameterizerParameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected intalphaAlpha: number of levels difference to use in comparisonstatic elki.utilities.optionhandling.OptionIDALPHA_IDParameter to specify the averaging neighborhood scaling.protected elki.distance.NumberVectorDistance<? super O>distanceThe distance function to use.protected intgG: number of shifted trees to create.static elki.utilities.optionhandling.OptionIDGRIDS_IDParameter to specify the number of Grids to use.protected intnminNeighborhood minimum sizestatic elki.utilities.optionhandling.OptionIDNMIN_IDParameter to specify the minimum neighborhood sizeprotected elki.utilities.random.RandomFactoryrndRandom generatorstatic elki.utilities.optionhandling.OptionIDSEED_IDParameter to specify the seed to initialize Random.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(elki.utilities.optionhandling.parameterization.Parameterization config)ALOCI<O>make()
-
-
-
Field Detail
-
NMIN_ID
public static final elki.utilities.optionhandling.OptionID NMIN_ID
Parameter to specify the minimum neighborhood size
-
ALPHA_ID
public static final elki.utilities.optionhandling.OptionID ALPHA_ID
Parameter to specify the averaging neighborhood scaling.
-
GRIDS_ID
public static final elki.utilities.optionhandling.OptionID GRIDS_ID
Parameter to specify the number of Grids to use.
-
SEED_ID
public static final elki.utilities.optionhandling.OptionID SEED_ID
Parameter to specify the seed to initialize Random.
-
nmin
protected int nmin
Neighborhood minimum size
-
alpha
protected int alpha
Alpha: number of levels difference to use in comparison
-
g
protected int g
G: number of shifted trees to create.
-
rnd
protected elki.utilities.random.RandomFactory rnd
Random generator
-
distance
protected elki.distance.NumberVectorDistance<? super O extends elki.data.NumberVector> distance
The distance function to use.
-
-