Package elki.outlier.anglebased
Class LBABOD.Par<V extends NumberVector>
- java.lang.Object
-
- elki.outlier.anglebased.ABOD.Par<V>
-
- elki.outlier.anglebased.FastABOD.Par<V>
-
- elki.outlier.anglebased.LBABOD.Par<V>
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- LBABOD<V extends NumberVector>
public static class LBABOD.Par<V extends NumberVector> extends FastABOD.Par<V>
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected int
l
Number of outliers to find.static OptionID
L_ID
Parameter to specify the number of outliers to compute exactly.-
Fields inherited from class elki.outlier.anglebased.FastABOD.Par
k, K_ID
-
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.LBABOD<V>
make()
Make an instance after successful configuration.
-
-
-
Field Detail
-
L_ID
public static final OptionID L_ID
Parameter to specify the number of outliers to compute exactly.
-
l
protected int l
Number of outliers to find.
-
-
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 classFastABOD.Par<V extends NumberVector>
- Parameters:
config
- Parameterization
-
make
public LBABOD<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 classFastABOD.Par<V extends NumberVector>
- Returns:
- a new instance
-
-