Package elki.index.lsh.hashfamilies
Class AbstractProjectedHashFunctionFamily.Par
- java.lang.Object
-
- elki.index.lsh.hashfamilies.AbstractProjectedHashFunctionFamily.Par
-
- All Implemented Interfaces:
elki.utilities.optionhandling.Parameterizer
- Direct Known Subclasses:
EuclideanHashFunctionFamily.Par,ManhattanHashFunctionFamily.Par
- Enclosing class:
- AbstractProjectedHashFunctionFamily
public abstract static class AbstractProjectedHashFunctionFamily.Par extends java.lang.Object implements elki.utilities.optionhandling.ParameterizerParameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description (package private) intkThe number of projections to use for each hash function.static elki.utilities.optionhandling.OptionIDNUMPROJ_IDNumber of projections to use in each hash function.(package private) elki.utilities.random.RandomFactoryrandomRandom generator to use.static elki.utilities.optionhandling.OptionIDRANDOM_IDParameter for fixing the random seed.(package private) doublewidthWidth of each bin.static elki.utilities.optionhandling.OptionIDWIDTH_IDParameter for choosing the bin width.
-
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)
-
-
-
Field Detail
-
RANDOM_ID
public static final elki.utilities.optionhandling.OptionID RANDOM_ID
Parameter for fixing the random seed.
-
WIDTH_ID
public static final elki.utilities.optionhandling.OptionID WIDTH_ID
Parameter for choosing the bin width.
-
NUMPROJ_ID
public static final elki.utilities.optionhandling.OptionID NUMPROJ_ID
Number of projections to use in each hash function.
-
random
elki.utilities.random.RandomFactory random
Random generator to use.
-
width
double width
Width of each bin.
-
k
int k
The number of projections to use for each hash function.
-
-