- LARGE_PRIME - Static variable in class info.debatty.java.lsh.LSH
-
- LSH - Class in info.debatty.java.lsh
-
Implementation of Locality Sensitive Hashing (LSH) principle, as described in
Leskovec, Rajaraman & Ullman (2014), "Mining of Massive Datasets",
Cambridge University Press.
- LSH(int, int) - Constructor for class info.debatty.java.lsh.LSH
-
Instantiates a LSH instance with s stages (or bands) and b buckets (per
stage), in a space with n dimensions.
- LSH() - Constructor for class info.debatty.java.lsh.LSH
-
Instantiate an empty LSH instance (useful only for serialization).
- LSHMinHash - Class in info.debatty.java.lsh
-
- LSHMinHash(int, int, int) - Constructor for class info.debatty.java.lsh.LSHMinHash
-
Instantiates a LSH instance that internally uses MinHash,
with s stages (or bands) and b buckets (per stage), for sets out of a
dictionary of n elements.
- LSHMinHash(int, int, int, long) - Constructor for class info.debatty.java.lsh.LSHMinHash
-
Instantiates a LSH instance that internally uses MinHash,
with s stages (or bands) and b buckets (per stage), for sets out of a
dictionary of n elements.
- LSHMinHashExample - Class in info.debatty.java.lsh.examples
-
- LSHMinHashExample() - Constructor for class info.debatty.java.lsh.examples.LSHMinHashExample
-
- LSHSuperBit - Class in info.debatty.java.lsh
-
- LSHSuperBit(int, int, int) - Constructor for class info.debatty.java.lsh.LSHSuperBit
-
LSH implementation relying on SuperBit, to bin vectors s times (stages)
in b buckets (per stage), in a space with n dimensions.
- LSHSuperBit(int, int, int, long) - Constructor for class info.debatty.java.lsh.LSHSuperBit
-
LSH implementation relying on SuperBit, to bin vectors s times (stages)
in b buckets (per stage), in a space with n dimensions.
- LSHSuperBit() - Constructor for class info.debatty.java.lsh.LSHSuperBit
-
Empty constructor, used only for serialization.
- LSHSuperBitExample - Class in info.debatty.java.lsh.examples
-
- LSHSuperBitExample() - Constructor for class info.debatty.java.lsh.examples.LSHSuperBitExample
-