Package elki.outlier.anglebased
Class FastABOD.Par<V extends NumberVector>
- java.lang.Object
-
- elki.outlier.anglebased.ABOD.Par<V>
-
- elki.outlier.anglebased.FastABOD.Par<V>
-
- All Implemented Interfaces:
Parameterizer
- Direct Known Subclasses:
LBABOD.Par
- Enclosing class:
- FastABOD<V extends NumberVector>
public static class FastABOD.Par<V extends NumberVector> extends ABOD.Par<V>
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected int
k
Number of neighbors.static OptionID
K_ID
Parameter for the nearest neighbors.-
Fields inherited from class elki.outlier.anglebased.ABOD.Par
KERNEL_FUNCTION_ID, kernelFunction
-
-
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.FastABOD<V>
make()
Make an instance after successful configuration.
-
-
-
Field Detail
-
K_ID
public static final OptionID K_ID
Parameter for the nearest neighbors.
-
k
protected int k
Number of neighbors.
-
-
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.
- Specified by:
configure
in interfaceParameterizer
- Overrides:
configure
in classABOD.Par<V extends NumberVector>
- Parameters:
config
- Parameterization
-
make
public FastABOD<V> 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.- Specified by:
make
in interfaceParameterizer
- Overrides:
make
in classABOD.Par<V extends NumberVector>
- Returns:
- a new instance
-
-