Locality-sensitive hashing

From HandWiki
(Redirected from Locality-preserving hashing)
Short description: Algorithmic technique using hashing

In computer science, locality-sensitive hashing (LSH) is a fuzzy hashing technique that hashes similar input items into the same "buckets" with high probability.[1] (The number of buckets is much smaller than the universe of possible input items.)[1] Since similar items end up in the same buckets, this technique can be used for data clustering and nearest neighbor search. It differs from conventional hashing techniques in that hash collisions are maximized, not minimized. Alternatively, the technique can be seen as a way to reduce the dimensionality of high-dimensional data; high-dimensional input items can be reduced to low-dimensional versions while preserving relative distances between items.

Hashing-based approximate nearest-neighbor search algorithms generally use one of two main categories of hashing methods: either data-independent methods, such as locality-sensitive hashing (LSH); or data-dependent methods, such as locality-preserving hashing (LPH).[2][3]

Locality-preserving hashing was initially devised as a way to facilitate data pipelining in implementations of massively parallel algorithms that use randomized routing and universal hashing to reduce memory contention and network congestion.[4][5]

Definitions

A family [math]\displaystyle{ \mathcal F }[/math] of functions [math]\displaystyle{ h\colon M \to S }[/math] is defined to be an LSH family[1][6][7] for

  • a metric space [math]\displaystyle{ \mathcal M =(M, d) }[/math],
  • a threshold [math]\displaystyle{ r\gt 0 }[/math],
  • an approximation factor [math]\displaystyle{ c\gt 1 }[/math],
  • and probabilities [math]\displaystyle{ p_1 \gt p_2 }[/math]

if it satisfies the following condition. For any two points [math]\displaystyle{ a, b \in M }[/math] and a hash function [math]\displaystyle{ h }[/math] chosen uniformly at random from [math]\displaystyle{ \mathcal F }[/math]:

  • If [math]\displaystyle{ d(a,b) \le r }[/math], then [math]\displaystyle{ h(a)=h(b) }[/math] (i.e., p and q collide) with probability at least [math]\displaystyle{ p_1 }[/math],
  • If [math]\displaystyle{ d(a,b) \ge cr }[/math], then [math]\displaystyle{ h(a)=h(b) }[/math] with probability at most [math]\displaystyle{ p_2 }[/math].

Such a family [math]\displaystyle{ \mathcal F }[/math] is called [math]\displaystyle{ (r,cr,p_1,p_2) }[/math]-sensitive.

LSH with respect to a similarity measure

Alternatively[8] it is possible to define an LSH family on a universe of items U endowed with a similarity function [math]\displaystyle{ \phi\colon U \times U \to [0,1] }[/math]. In this setting, a LSH scheme is a family of hash functions H coupled with a probability distribution D over H such that a function [math]\displaystyle{ h \in H }[/math] chosen according to D satisfies [math]\displaystyle{ Pr [h(a) = h(b)] = \phi(a,b) }[/math] for each [math]\displaystyle{ a,b \in U }[/math].

Amplification

Given a [math]\displaystyle{ (d_1, d_2, p_1, p_2) }[/math]-sensitive family [math]\displaystyle{ \mathcal F }[/math], we can construct new families [math]\displaystyle{ \mathcal G }[/math] by either the AND-construction or OR-construction of [math]\displaystyle{ \mathcal F }[/math].[1]

To create an AND-construction, we define a new family [math]\displaystyle{ \mathcal G }[/math] of hash functions g, where each function g is constructed from k random functions [math]\displaystyle{ h_1, \ldots, h_k }[/math] from [math]\displaystyle{ \mathcal F }[/math]. We then say that for a hash function [math]\displaystyle{ g \in \mathcal G }[/math], [math]\displaystyle{ g(x) = g(y) }[/math] if and only if all [math]\displaystyle{ h_i(x) = h_i(y) }[/math] for [math]\displaystyle{ i = 1, 2, \ldots, k }[/math]. Since the members of [math]\displaystyle{ \mathcal F }[/math] are independently chosen for any [math]\displaystyle{ g \in \mathcal G }[/math], [math]\displaystyle{ \mathcal G }[/math] is a [math]\displaystyle{ (d_1, d_2, p_{1}^k, p_{2}^k) }[/math]-sensitive family.

To create an OR-construction, we define a new family [math]\displaystyle{ \mathcal G }[/math] of hash functions g, where each function g is constructed from k random functions [math]\displaystyle{ h_1, \ldots, h_k }[/math] from [math]\displaystyle{ \mathcal F }[/math]. We then say that for a hash function [math]\displaystyle{ g \in \mathcal G }[/math], [math]\displaystyle{ g(x) = g(y) }[/math] if and only if [math]\displaystyle{ h_i(x) = h_i(y) }[/math] for one or more values of i. Since the members of [math]\displaystyle{ \mathcal F }[/math] are independently chosen for any [math]\displaystyle{ g \in \mathcal G }[/math], [math]\displaystyle{ \mathcal G }[/math] is a [math]\displaystyle{ (d_1, d_2, 1- (1 - p_1)^k, 1 - (1 - p_2)^k) }[/math]-sensitive family.

Applications

LSH has been applied to several problem domains, including:

Methods

Bit sampling for Hamming distance

One of the easiest ways to construct an LSH family is by bit sampling.[7] This approach works for the Hamming distance over d-dimensional vectors [math]\displaystyle{ \{0,1\}^d }[/math]. Here, the family [math]\displaystyle{ \mathcal F }[/math] of hash functions is simply the family of all the projections of points on one of the [math]\displaystyle{ d }[/math] coordinates, i.e., [math]\displaystyle{ {\mathcal F}=\{h\colon \{0,1\}^d\to \{0,1\}\mid h(x)=x_i \text{ for some } i\in \{1, \ldots, d\}\} }[/math], where [math]\displaystyle{ x_i }[/math] is the [math]\displaystyle{ i }[/math]th coordinate of [math]\displaystyle{ x }[/math]. A random function [math]\displaystyle{ h }[/math] from [math]\displaystyle{ {\mathcal F} }[/math] simply selects a random bit from the input point. This family has the following parameters: [math]\displaystyle{ P_1=1-R/d }[/math], [math]\displaystyle{ P_2=1-cR/d }[/math]. That is, any two vectors [math]\displaystyle{ x,y }[/math] with Hamming distance at most [math]\displaystyle{ R }[/math] collide under a random [math]\displaystyle{ h }[/math] with probability at least [math]\displaystyle{ P_1 }[/math]. Any [math]\displaystyle{ x,y }[/math] with Hamming distance at least [math]\displaystyle{ cR }[/math] collide with probability at most [math]\displaystyle{ P_2 }[/math].

Min-wise independent permutations

Main page: MinHash

Suppose U is composed of subsets of some ground set of enumerable items S and the similarity function of interest is the Jaccard index J. If π is a permutation on the indices of S, for [math]\displaystyle{ A \subseteq S }[/math] let [math]\displaystyle{ h(A) = \min_{a \in A} \{ \pi(a) \} }[/math]. Each possible choice of π defines a single hash function h mapping input sets to elements of S.

Define the function family H to be the set of all such functions and let D be the uniform distribution. Given two sets [math]\displaystyle{ A,B \subseteq S }[/math] the event that [math]\displaystyle{ h(A) = h(B) }[/math] corresponds exactly to the event that the minimizer of π over [math]\displaystyle{ A \cup B }[/math] lies inside [math]\displaystyle{ A \cap B }[/math]. As h was chosen uniformly at random, [math]\displaystyle{ Pr[h(A) = h(B)] = J(A,B)\, }[/math] and [math]\displaystyle{ (H,D)\, }[/math] define an LSH scheme for the Jaccard index.

Because the symmetric group on n elements has size n!, choosing a truly random permutation from the full symmetric group is infeasible for even moderately sized n. Because of this fact, there has been significant work on finding a family of permutations that is "min-wise independent" — a permutation family for which each element of the domain has equal probability of being the minimum under a randomly chosen π. It has been established that a min-wise independent family of permutations is at least of size [math]\displaystyle{ \operatorname{lcm}\{\,1, 2, \ldots, n\,\} \ge e^{n-o(n)} }[/math],[18] and that this bound is tight.[19]

Because min-wise independent families are too big for practical applications, two variant notions of min-wise independence are introduced: restricted min-wise independent permutations families, and approximate min-wise independent families. Restricted min-wise independence is the min-wise independence property restricted to certain sets of cardinality at most k.[20] Approximate min-wise independence differs from the property by at most a fixed ε.[21]

Open source methods

Nilsimsa Hash

Nilsimsa is a locality-sensitive hashing algorithm used in anti-spam efforts.[22] The goal of Nilsimsa is to generate a hash digest of an email message such that the digests of two similar messages are similar to each other. The paper suggests that the Nilsimsa satisfies three requirements:

  1. The digest identifying each message should not vary significantly for changes that can be produced automatically.
  2. The encoding must be robust against intentional attacks.
  3. The encoding should support an extremely low risk of false positives.

Testing performed in the paper on a range of file types identified the Nilsimsa hash as having a significantly higher false positive rate when compared to other similarity digest schemes such as TLSH, Ssdeep and Sdhash.[23]

TLSH

TLSH is locality-sensitive hashing algorithm designed for a range of security and digital forensic applications.[17] The goal of TLSH is to generate hash digests for messages such that low distances between digests indicate that their corresponding messages are likely to be similar.

An implementation of TLSH is available as open-source software.[24]

Random projection

Main page: Random projection
[math]\displaystyle{ \frac{\theta(u,v)}{\pi} }[/math] is proportional to [math]\displaystyle{ 1-\cos(\theta(u,v)) }[/math] on the interval [0, [math]\displaystyle{ \pi }[/math]]

The random projection method of LSH due to Moses Charikar[8] called SimHash (also sometimes called arccos[25]) uses an approximation of the cosine distance between vectors. The technique was used to approximate the NP-complete max-cut problem.[8]

The basic idea of this technique is to choose a random hyperplane (defined by a normal unit vector r) at the outset and use the hyperplane to hash input vectors.

Given an input vector v and a hyperplane defined by r, we let [math]\displaystyle{ h(v) = \sgn(v \cdot r) }[/math]. That is, [math]\displaystyle{ h(v) = \pm 1 }[/math] depending on which side of the hyperplane v lies. This way, each possible choice of a random hyperplane r can be interpreted as a hash function [math]\displaystyle{ h(v) }[/math].

For two vectors u,v with angle [math]\displaystyle{ \theta(u,v) }[/math] between them, it can be shown that

[math]\displaystyle{ Pr[h(u) = h(v)] = 1 - \frac{\theta(u,v)}{\pi} }[/math]

[math]\displaystyle{ \frac{\theta(u,v)}{\pi} }[/math] is proportional to [math]\displaystyle{ 1-\cos(\theta(u,v)) }[/math]. In fact the ratio is always within a factor of .87856.[8][26] Meaning the probability of the two vectors being on the same side of the random hyperplane is proportional to the cosine distance between them.

Stable distributions

The hash function [27] [math]\displaystyle{ h_{\mathbf{a},b} (\boldsymbol{\upsilon}) : \mathcal{R}^d \to \mathcal{N} }[/math] maps a d-dimensional vector [math]\displaystyle{ \boldsymbol{\upsilon} }[/math] onto the set of integers. Each hash function in the family is indexed by a choice of random [math]\displaystyle{ \mathbf{a} }[/math] and [math]\displaystyle{ b }[/math] where [math]\displaystyle{ \mathbf{a} }[/math] is a d-dimensional vector with entries chosen independently from a stable distribution and [math]\displaystyle{ b }[/math] is a real number chosen uniformly from the range [0,r]. For a fixed [math]\displaystyle{ \mathbf{a},b }[/math] the hash function [math]\displaystyle{ h_{\mathbf{a},b} }[/math] is given by [math]\displaystyle{ h_{\mathbf{a},b} (\boldsymbol{\upsilon}) = \left \lfloor \frac{\mathbf{a}\cdot \boldsymbol{\upsilon}+b}{r} \right \rfloor }[/math].

Other construction methods for hash functions have been proposed to better fit the data. [28] In particular k-means hash functions are better in practice than projection-based hash functions, but without any theoretical guarantee.

Semantic hashing

Semantic hashing is a technique that attempts to map input items to addresses such that closer inputs have higher semantic similarity.[29] The hashcodes are found via training of an artificial neural network or graphical model.[citation needed]

Algorithm for nearest neighbor search

One of the main applications of LSH is to provide a method for efficient approximate nearest neighbor search algorithms. Consider an LSH family [math]\displaystyle{ \mathcal F }[/math]. The algorithm has two main parameters: the width parameter k and the number of hash tables L.

In the first step, we define a new family [math]\displaystyle{ \mathcal G }[/math] of hash functions g, where each function g is obtained by concatenating k functions [math]\displaystyle{ h_1, \ldots, h_k }[/math] from [math]\displaystyle{ \mathcal F }[/math], i.e., [math]\displaystyle{ g(p) = [h_1(p), \ldots, h_k(p)] }[/math]. In other words, a random hash function g is obtained by concatenating k randomly chosen hash functions from [math]\displaystyle{ \mathcal F }[/math]. The algorithm then constructs L hash tables, each corresponding to a different randomly chosen hash function g.

In the preprocessing step we hash all n d-dimensional points from the data set S into each of the L hash tables. Given that the resulting hash tables have only n non-zero entries, one can reduce the amount of memory used per each hash table to [math]\displaystyle{ O(n) }[/math] using standard hash functions.

Given a query point q, the algorithm iterates over the L hash functions g. For each g considered, it retrieves the data points that are hashed into the same bucket as q. The process is stopped as soon as a point within distance cR from q is found.

Given the parameters k and L, the algorithm has the following performance guarantees:

  • preprocessing time: [math]\displaystyle{ O(nLkt) }[/math], where t is the time to evaluate a function [math]\displaystyle{ h \in \mathcal F }[/math] on an input point p;
  • space: [math]\displaystyle{ O(nL) }[/math], plus the space for storing data points;
  • query time: [math]\displaystyle{ O(L(kt+dnP_2^k)) }[/math];
  • the algorithm succeeds in finding a point within distance cR from q (if there exists a point within distance R) with probability at least [math]\displaystyle{ 1 - ( 1 - P_1^k ) ^ L }[/math];

For a fixed approximation ratio [math]\displaystyle{ c=1+\epsilon }[/math] and probabilities [math]\displaystyle{ P_1 }[/math] and [math]\displaystyle{ P_2 }[/math], one can set [math]\displaystyle{ k = \left\lceil\tfrac{\log n}{\log 1/P_2}\right\rceil }[/math] and [math]\displaystyle{ L = \lceil P_1^{-k}\rceil = O(n^{\rho}P_1^{-1}) }[/math], where [math]\displaystyle{ \rho={\tfrac{\log P_1}{\log P_2}} }[/math]. Then one obtains the following performance guarantees:

  • preprocessing time: [math]\displaystyle{ O(n^{1+\rho}P_1^{-1}kt) }[/math];
  • space: [math]\displaystyle{ O(n^{1+\rho}P_1^{-1}) }[/math], plus the space for storing data points;
  • query time: [math]\displaystyle{ O(n^{\rho}P_1^{-1}(kt+d)) }[/math];

Improvements

When t is large, it is possible to reduce the hashing time from [math]\displaystyle{ O(n^{\rho}) }[/math]. This was shown by[30] and[31] which gave

  • query time: [math]\displaystyle{ O(t\log^2(1/P_2)/P_1 + n^{\rho}(d + 1/P_1)) }[/math];
  • space: [math]\displaystyle{ O(n^{1+\rho}/P_1 + \log^2(1/P_2)/P_1) }[/math];

It is also sometimes the case that the factor [math]\displaystyle{ 1/P_1 }[/math] can be very large. This happens for example with Jaccard similarity data, where even the most similar neighbor often has a quite low Jaccard similarity with the query. In[32] it was shown how to reduce the query time to [math]\displaystyle{ O(n^\rho/P_1^{1-\rho}) }[/math] (not including hashing costs) and similarly the space usage.

See also

References

  1. 1.0 1.1 1.2 1.3 Rajaraman, A.; Ullman, J. (2010). "Mining of Massive Datasets, Ch. 3.". http://infolab.stanford.edu/~ullman/mmds.html. 
  2. Zhao, Kang; Lu, Hongtao; Mei, Jincheng (2014). "Locality Preserving Hashing". AAAI Conference on Artificial Intelligence. 28. pp. 2874–2880. https://ojs.aaai.org/index.php/AAAI/article/view/9133/8992. 
  3. Tsai, Yi-Hsuan; Yang, Ming-Hsuan (October 2014). "Locality preserving hashing". 2014 IEEE International Conference on Image Processing (ICIP). pp. 2988–2992. doi:10.1109/ICIP.2014.7025604. ISBN 978-1-4799-5751-4. 
  4. 4.0 4.1 Chin, Andrew (1991). Complexity Issues in General Purpose Parallel Computing (DPhil). University of Oxford. pp. 87–95.
  5. 5.0 5.1 Chin, Andrew (1994). "Locality-Preserving Hash Functions for General Purpose Parallel Computation". Algorithmica 12 (2–3): 170–181. doi:10.1007/BF01185209. http://unclaw.com/chin/scholarship/hashfunctions.pdf. 
  6. Gionis, A. (1999). "Similarity Search in High Dimensions via Hashing". Proceedings of the 25th Very Large Database (VLDB) Conference. http://people.csail.mit.edu/indyk/vldb99.ps. 
  7. 7.0 7.1 Indyk, Piotr.; Motwani, Rajeev. (1998). "Proceedings of 30th Symposium on Theory of Computing". 
  8. 8.0 8.1 8.2 8.3 "Proceedings of the 34th Annual ACM Symposium on Theory of Computing". 2002. pp. 380–388. doi:10.1145/509907.509965. 
  9. Das, Abhinandan S. (2007), "Google news personalization: scalable online collaborative filtering", Proceedings of the 16th international conference on World Wide Web, pp. 271–280, doi:10.1145/1242572.1242610, ISBN 9781595936547 .
  10. Koga, Hisashi; Tetsuo Ishibashi; Toshinori Watanabe (2007), "Fast agglomerative hierarchical clustering algorithm using Locality-Sensitive Hashing", Knowledge and Information Systems 12 (1): 25–53, doi:10.1007/s10115-006-0027-5 .
  11. Cochez, Michael; Mou, Hao (2015), "Twister Tries", Proceedings of the 2015 ACM SIGMOD International Conference on Management of Data, pp. 505–517, doi:10.1145/2723372.2751521, ISBN 9781450327589, https://jyx.jyu.fi/bitstream/123456789/46537/1/cochezmousigmod15finalcameraready.pdf .
  12. Brinza, Dumitru (2010), "RAPID detection of gene–gene interactions in genome-wide association studies", Bioinformatics 26 (22): 2856–2862, doi:10.1093/bioinformatics/btq529, PMID 20871107 
  13. dejavu - Audio fingerprinting and recognition in Python, 2018-12-19, https://github.com/worldveil/dejavu 
  14. Aluç, Güneş; Özsu, M. Tamer; Daudjee, Khuzaima (2018), "Building self-clustering RDF databases using Tunable-LSH", The VLDB Journal 28 (2): 173–195, doi:10.1007/s00778-018-0530-9 
  15. Chen, Beidi; Medini, Tharun; Farwell, James; Gobriel, Sameh; Tai, Charlie; Shrivastava, Anshumali (2020-02-29). "SLIDE : In Defense of Smart Algorithms over Hardware Acceleration for Large-Scale Deep Learning Systems". arXiv:1903.03129 [cs.DC].
  16. Chen, Beidi; Liu, Zichang; Peng, Binghui; Xu, Zhaozhuo; Li, Jonathan Lingjie; Dao, Tri; Song, Zhao; Shrivastava, Anshumali et al. (2021), "MONGOOSE: A Learnable LSH Framework for Efficient Neural Network Training", International Conference on Learning Representation, https://openreview.net/forum?id=wWK7yXkULyh 
  17. 17.0 17.1 Oliver, Jonathan; Cheng, Chun; Chen, Yanggui (2013). "TLSH - a locality sensitive hash". 7–13. doi:10.1109/CTC.2013.9. ISBN 978-1-4799-3076-0. https://www.academia.edu/7833902. 
  18. "Proceedings of the Thirtieth Annual ACM Symposium on Theory of Computing". 1998. pp. 327–336. doi:10.1145/276698.276781. 
  19. Takei, Y.; Itoh, T.; Shinozaki, T.. "An optimal construction of exactly min-wise independent permutations". Technical Report COMP98-62, IEICE, 1998. 
  20. Matoušek, J.; Stojakovic, M. (2002). "On Restricted Min-Wise Independence of Permutations". Preprint. http://citeseer.ist.psu.edu/689217.html. Retrieved 2007-11-14. 
  21. "Low discrepancy sets yield approximate min-wise independent permutation families". Information Processing Letters 73 (1–2): 29–32. 2000. doi:10.1016/S0020-0190(99)00163-5. http://citeseer.ist.psu.edu/saks99low.html. Retrieved 2007-11-14. 
  22. Damiani (2004). "An Open Digest-based Technique for Spam Detection". http://spdp.di.unimi.it/papers/pdcs04.pdf. 
  23. Oliver (2013). "TLSH - A Locality Sensitive Hash". 4th Cybercrime and Trustworthy Computing Workshop. https://www.academia.edu/7833902. Retrieved 2015-06-04. 
  24. "TLSH". https://github.com/trendmicro/tlsh. 
  25. Alexandr Andoni; Indyk, P. (2008). "Near-Optimal Hashing Algorithms for Approximate Nearest Neighbor in High Dimensions". Communications of the ACM 51 (1): 117–122. doi:10.1145/1327452.1327494. 
  26. Goemans, Michel X.; Williamson, David P. (1995). "Improved approximation algorithms for maximum cut and satisfiability problems using semidefinite programming". Journal of the ACM (Association for Computing Machinery (ACM)) 42 (6): 1115–1145. doi:10.1145/227683.227684. ISSN 0004-5411. 
  27. Datar, M. (2004). "Locality-Sensitive Hashing Scheme Based on p-Stable Distributions". Proceedings of the Symposium on Computational Geometry. http://theory.csail.mit.edu/~mirrokni/pstable.ps. 
  28. Pauleve, L.; Jegou, H.; Amsaleg, L. (2010). "Locality sensitive hashing: A comparison of hash function types and querying mechanisms". Pattern Recognition Letters 31 (11): 1348–1358. doi:10.1016/j.patrec.2010.04.004. Bibcode2010PaReL..31.1348P. http://hal.inria.fr/inria-00567191/en/. 
  29. Salakhutdinov, Ruslan; Hinton, Geoffrey (2008). "Semantic hashing" (in en). International Journal of Approximate Reasoning 50 (7): 969–978. doi:10.1016/j.ijar.2008.11.006. 
  30. Dahlgaard, Søren, Mathias Bæk Tejs Knudsen, and Mikkel Thorup. "Fast similarity sketching." 2017 IEEE 58th Annual Symposium on Foundations of Computer Science (FOCS). IEEE, 2017.
  31. Christiani, Tobias. "Fast locality-sensitive hashing frameworks for approximate near neighbor search." International Conference on Similarity Search and Applications. Springer, Cham, 2019.
  32. Ahle, Thomas Dybdahl. "On the Problem of [math]\displaystyle{ p_1^{-1} }[/math] in Locality-Sensitive Hashing." International Conference on Similarity Search and Applications. Springer, Cham, 2020.
  33. Gorman, James, and James R. Curran. "Scaling distributional similarity to large corpora." Proceedings of the 21st International Conference on Computational Linguistics and the 44th annual meeting of the Association for Computational Linguistics. Association for Computational Linguistics, 2006.

Further reading

External links