Uses of Interface
elki.index.lsh.hashfunctions.LocalitySensitiveHashFunction
-
Packages that use LocalitySensitiveHashFunction Package Description elki.index.lsh Locality Sensitive Hashing.elki.index.lsh.hashfamilies Hash function families for LSH.elki.index.lsh.hashfunctions Hash functions for LSH. -
-
Uses of LocalitySensitiveHashFunction in elki.index.lsh
Fields in elki.index.lsh with type parameters of type LocalitySensitiveHashFunction Modifier and Type Field Description (package private) java.util.ArrayList<? extends LocalitySensitiveHashFunction<? super V>>
InMemoryLSHIndex.Instance. hashfunctions
Hash functions to use.Constructor parameters in elki.index.lsh with type arguments of type LocalitySensitiveHashFunction Constructor Description Instance(Relation<V> relation, java.util.ArrayList<? extends LocalitySensitiveHashFunction<? super V>> hashfunctions, int numberOfBuckets)
Constructor. -
Uses of LocalitySensitiveHashFunction in elki.index.lsh.hashfamilies
Methods in elki.index.lsh.hashfamilies that return types with arguments of type LocalitySensitiveHashFunction Modifier and Type Method Description java.util.ArrayList<? extends LocalitySensitiveHashFunction<? super NumberVector>>
AbstractProjectedHashFunctionFamily. generateHashFunctions(Relation<? extends NumberVector> relation, int l)
java.util.ArrayList<? extends LocalitySensitiveHashFunction<? super NumberVector>>
CosineHashFunctionFamily. generateHashFunctions(Relation<? extends NumberVector> relation, int l)
java.util.ArrayList<? extends LocalitySensitiveHashFunction<? super V>>
LocalitySensitiveHashFunctionFamily. generateHashFunctions(Relation<? extends V> relation, int l)
Generate hash functions for the given relation. -
Uses of LocalitySensitiveHashFunction in elki.index.lsh.hashfunctions
Classes in elki.index.lsh.hashfunctions that implement LocalitySensitiveHashFunction Modifier and Type Class Description class
CosineLocalitySensitiveHashFunction
Random projection family to use with sparse vectors.class
MultipleProjectionsLocalitySensitiveHashFunction
LSH hash function for vector space data.
-