Package elki.outlier.intrinsic
Class IDOS.Par<O>
- java.lang.Object
-
- elki.outlier.intrinsic.IDOS.Par<O>
-
- All Implemented Interfaces:
Parameterizer
public static class IDOS.Par<O> extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Jonathan von Brünken, Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected Distance<? super O>distanceThe distance function to use.protected IntrinsicDimensionalityEstimator<? super O>estimatorEstimator for intrinsic dimensionality.static OptionIDESTIMATOR_IDThe class used for estimating the intrinsic dimensionality.protected intk_ckNN for the context set (ID computation).protected intk_rkNN for the reference set.static OptionIDKC_IDParameter to specify the number of nearest neighbors of an object to be used for the GED computation.static OptionIDKR_IDParameter to specify the neighborhood size to use for the averaging.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(Parameterization config)Configure the class.IDOS<O>make()Make an instance after successful configuration.
-
-
-
Field Detail
-
ESTIMATOR_ID
public static final OptionID ESTIMATOR_ID
The class used for estimating the intrinsic dimensionality.
-
KR_ID
public static final OptionID KR_ID
Parameter to specify the neighborhood size to use for the averaging.
-
KC_ID
public static final OptionID KC_ID
Parameter to specify the number of nearest neighbors of an object to be used for the GED computation.
-
estimator
protected IntrinsicDimensionalityEstimator<? super O> estimator
Estimator for intrinsic dimensionality.
-
k_c
protected int k_c
kNN for the context set (ID computation).
-
k_r
protected int k_r
kNN for the reference set.
-
-
Method Detail
-
configure
public void configure(Parameterization config)
Description copied from interface:ParameterizerConfigure 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:
configurein interfaceParameterizer- Parameters:
config- Parameterization
-
make
public IDOS<O> make()
Description copied from interface:ParameterizerMake an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Objectas return type.- Specified by:
makein interfaceParameterizer- Returns:
- a new instance
-
-