Package elki.outlier.distance
Class ReferenceBasedOutlierDetection.Par
- java.lang.Object
-
- elki.outlier.distance.ReferenceBasedOutlierDetection.Par
-
- All Implemented Interfaces:
elki.utilities.optionhandling.Parameterizer
- Enclosing class:
- ReferenceBasedOutlierDetection
public static class ReferenceBasedOutlierDetection.Par extends java.lang.Object implements elki.utilities.optionhandling.ParameterizerParameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected elki.distance.NumberVectorDistance<? super elki.data.NumberVector>distanceThe distance function to use.private intkNumber of nearest neighbors.static elki.utilities.optionhandling.OptionIDK_IDThe number of nearest neighbors of an object, to be considered for computing its REFOD_SCORE, must be an integer greater than 1.private elki.utilities.referencepoints.ReferencePointsHeuristicrefpStores the reference point strategystatic elki.utilities.optionhandling.OptionIDREFP_IDParameter for the reference points heuristic.
-
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)ReferenceBasedOutlierDetectionmake()
-
-
-
Field Detail
-
REFP_ID
public static final elki.utilities.optionhandling.OptionID REFP_ID
Parameter for the reference points heuristic.
-
K_ID
public static final elki.utilities.optionhandling.OptionID K_ID
The number of nearest neighbors of an object, to be considered for computing its REFOD_SCORE, must be an integer greater than 1.
-
distance
protected elki.distance.NumberVectorDistance<? super elki.data.NumberVector> distance
The distance function to use.
-
k
private int k
Number of nearest neighbors.
-
refp
private elki.utilities.referencepoints.ReferencePointsHeuristic refp
Stores the reference point strategy
-
-
Method Detail
-
configure
public void configure(elki.utilities.optionhandling.parameterization.Parameterization config)
- Specified by:
configurein interfaceelki.utilities.optionhandling.Parameterizer
-
make
public ReferenceBasedOutlierDetection make()
- Specified by:
makein interfaceelki.utilities.optionhandling.Parameterizer
-
-