Package elki.clustering.subspace
Class CLIQUE.Par
- java.lang.Object
-
- elki.clustering.subspace.CLIQUE.Par
-
- All Implemented Interfaces:
elki.utilities.optionhandling.Parameterizer
- Enclosing class:
- CLIQUE
public static class CLIQUE.Par extends java.lang.Object implements elki.utilities.optionhandling.ParameterizerParameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanprunePruning flag.static elki.utilities.optionhandling.OptionIDPRUNE_IDFlag to indicate that only subspaces with large coverage (i.e. the fraction of the database that is covered by the dense units) are selected, the rest will be pruned.protected doubletauDensity threshold / selectivity.static elki.utilities.optionhandling.OptionIDTAU_IDParameter to specify the density threshold for the selectivity of a unit, where the selectivity is the fraction of total feature vectors contained in this unit, must be a double greater than 0 and less than 1.protected intxsiNumber of intervals in each dimension.static elki.utilities.optionhandling.OptionIDXSI_IDParameter to specify the number of intervals (units) in each dimension, must be an integer greater than 0.
-
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)CLIQUEmake()
-
-
-
Field Detail
-
XSI_ID
public static final elki.utilities.optionhandling.OptionID XSI_ID
Parameter to specify the number of intervals (units) in each dimension, must be an integer greater than 0.
-
TAU_ID
public static final elki.utilities.optionhandling.OptionID TAU_ID
Parameter to specify the density threshold for the selectivity of a unit, where the selectivity is the fraction of total feature vectors contained in this unit, must be a double greater than 0 and less than 1.
-
PRUNE_ID
public static final elki.utilities.optionhandling.OptionID PRUNE_ID
Flag to indicate that only subspaces with large coverage (i.e. the fraction of the database that is covered by the dense units) are selected, the rest will be pruned.
-
xsi
protected int xsi
Number of intervals in each dimension.
-
tau
protected double tau
Density threshold / selectivity.
-
prune
protected boolean prune
Pruning flag.
-
-
Method Detail
-
configure
public void configure(elki.utilities.optionhandling.parameterization.Parameterization config)
- Specified by:
configurein interfaceelki.utilities.optionhandling.Parameterizer
-
make
public CLIQUE make()
- Specified by:
makein interfaceelki.utilities.optionhandling.Parameterizer
-
-