Package elki.outlier.density
Class IsolationForest.Par
- java.lang.Object
-
- elki.outlier.density.IsolationForest.Par
-
- All Implemented Interfaces:
elki.utilities.optionhandling.Parameterizer
- Enclosing class:
- IsolationForest
public static class IsolationForest.Par extends java.lang.Object implements elki.utilities.optionhandling.ParameterizerParameterization class- Author:
- Braulio V.S. Vinces
-
-
Field Summary
Fields Modifier and Type Field Description static elki.utilities.optionhandling.OptionIDNUM_TREES_IDParameter for the number of treesprotected intnumTreesNumber of treesprotected elki.utilities.random.RandomFactoryrndRandom generatorstatic elki.utilities.optionhandling.OptionIDSEED_IDParameter to specify the seed to initialize Random.static elki.utilities.optionhandling.OptionIDSUBSAMPLE_SIZE_IDParameter for the sub sample sizeprotected intsubsampleSizeSize of the sample set
-
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)IsolationForestmake()
-
-
-
Field Detail
-
NUM_TREES_ID
public static final elki.utilities.optionhandling.OptionID NUM_TREES_ID
Parameter for the number of trees
-
SUBSAMPLE_SIZE_ID
public static final elki.utilities.optionhandling.OptionID SUBSAMPLE_SIZE_ID
Parameter for the sub sample size
-
SEED_ID
public static final elki.utilities.optionhandling.OptionID SEED_ID
Parameter to specify the seed to initialize Random.
-
numTrees
protected int numTrees
Number of trees
-
subsampleSize
protected int subsampleSize
Size of the sample set
-
rnd
protected elki.utilities.random.RandomFactory rnd
Random generator
-
-
Method Detail
-
configure
public void configure(elki.utilities.optionhandling.parameterization.Parameterization config)
- Specified by:
configurein interfaceelki.utilities.optionhandling.Parameterizer
-
make
public IsolationForest make()
- Specified by:
makein interfaceelki.utilities.optionhandling.Parameterizer
-
-