Package elki.math.statistics.dependence
Class MCDEDependence.Par
- java.lang.Object
-
- elki.math.statistics.dependence.MCDEDependence.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- MCDEDependence
public static class MCDEDependence.Par extends java.lang.Object implements Parameterizer
Parameterizer- Author:
- Alan Mazankiewicz, Edouard Fouché
-
-
Field Summary
Fields Modifier and Type Field Description protected doublealphaHolds the value ofALPHA_ID.static OptionIDALPHA_IDParameter that specifies the size of the sliceprotected doublebetaHolds the value ofBETA_ID.static OptionIDBETA_IDParameter that specifies the size of the marginal restriction.protected intmHolds the value ofM_ID.static OptionIDM_IDParameter that specifies the number of iterations in the Monte-Carlo process of identifying high contrast subspaces.private MCDETest<?>mcdeTestHolds the value ofTEST_ID.protected RandomFactoryrndRandom generator.static OptionIDSEED_IDParameter that specifies the random seed.static OptionIDTEST_IDParameter that specifies which MCDE statistical test to use in order to calculate the contrast between the instances in the slice vs out of slice.
-
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.MCDEDependencemake()Make an instance after successful configuration.
-
-
-
Field Detail
-
M_ID
public static final OptionID M_ID
Parameter that specifies the number of iterations in the Monte-Carlo process of identifying high contrast subspaces.
-
ALPHA_ID
public static final OptionID ALPHA_ID
Parameter that specifies the size of the slice
-
BETA_ID
public static final OptionID BETA_ID
Parameter that specifies the size of the marginal restriction. Note that in the original paper alpha = beta and as such there is no explicit distinction between the parameters.
-
SEED_ID
public static final OptionID SEED_ID
Parameter that specifies the random seed.
-
TEST_ID
public static final OptionID TEST_ID
Parameter that specifies which MCDE statistical test to use in order to calculate the contrast between the instances in the slice vs out of slice.
-
m
protected int m
Holds the value ofM_ID.
-
alpha
protected double alpha
Holds the value ofALPHA_ID.
-
beta
protected double beta
Holds the value ofBETA_ID.
-
rnd
protected RandomFactory rnd
Random generator.
-
-
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 MCDEDependence 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
-
-