Package elki.index.lsh
Class InMemoryLSHIndex.Par<V>
- java.lang.Object
-
- elki.index.lsh.InMemoryLSHIndex.Par<V>
-
- All Implemented Interfaces:
elki.utilities.optionhandling.Parameterizer
- Enclosing class:
- InMemoryLSHIndex<V>
public static class InMemoryLSHIndex.Par<V> extends java.lang.Object implements elki.utilities.optionhandling.ParameterizerParameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description static elki.utilities.optionhandling.OptionIDBUCKETS_IDNumber of hash tables to use for LSH.(package private) LocalitySensitiveHashFunctionFamily<? super V>familyLSH hash function family to use.static elki.utilities.optionhandling.OptionIDFAMILY_IDHash function family parameter.(package private) intlNumber of hash functions for each table.static elki.utilities.optionhandling.OptionIDL_IDNumber of hash tables to use for LSH.(package private) intnumberOfBucketsNumber of buckets to use.
-
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)InMemoryLSHIndex<V>make()
-
-
-
Field Detail
-
FAMILY_ID
public static final elki.utilities.optionhandling.OptionID FAMILY_ID
Hash function family parameter.
-
L_ID
public static final elki.utilities.optionhandling.OptionID L_ID
Number of hash tables to use for LSH.
-
BUCKETS_ID
public static final elki.utilities.optionhandling.OptionID BUCKETS_ID
Number of hash tables to use for LSH.
-
family
LocalitySensitiveHashFunctionFamily<? super V> family
LSH hash function family to use.
-
l
int l
Number of hash functions for each table.
-
numberOfBuckets
int numberOfBuckets
Number of buckets to use.
-
-
Method Detail
-
configure
public void configure(elki.utilities.optionhandling.parameterization.Parameterization config)
- Specified by:
configurein interfaceelki.utilities.optionhandling.Parameterizer
-
make
public InMemoryLSHIndex<V> make()
- Specified by:
makein interfaceelki.utilities.optionhandling.Parameterizer
-
-