Package elki.outlier.anglebased
Class ABOD.Par<V extends NumberVector>
- java.lang.Object
-
- elki.outlier.anglebased.ABOD.Par<V>
-
- All Implemented Interfaces:
Parameterizer
- Direct Known Subclasses:
FastABOD.Par
- Enclosing class:
- ABOD<V extends NumberVector>
public static class ABOD.Par<V extends NumberVector> extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description static OptionID
KERNEL_FUNCTION_ID
Parameter for the kernel function.protected Similarity<V>
kernelFunction
Distance function.
-
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.ABOD<V>
make()
Make an instance after successful configuration.
-
-
-
Field Detail
-
KERNEL_FUNCTION_ID
public static final OptionID KERNEL_FUNCTION_ID
Parameter for the kernel function.
-
kernelFunction
protected Similarity<V extends NumberVector> kernelFunction
Distance function.
-
-
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
- Parameters:
config
- Parameterization
-
make
public ABOD<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
- Returns:
- a new instance
-
-