Fast Exact Search in Hamming Space with Multi-Index Hashing (2012)
1–7 of 7 posts
Re: Fast Exact Search in Hamming Space with Multi-Index Hashing (2012)
#2EDIT: also it's probably best to link to the homepage for the paper: http://www.cs.toronto.edu/~norouzi/research/mih/ and the code: https://github.com/norouzi/mih/
Re: Fast Exact Search in Hamming Space with Multi-Index Hashing (2012)
#3http://blog.underdog.io/post/120612462747/curalate-helping-t...
Re: Fast Exact Search in Hamming Space with Multi-Index Hashing (2012)
#4I used this paper and associated code in my undergraduate thesis. After decoupling the C++ code from MATLAB I was able to make it into a library and use it to search binary features instead of the floating point features hashed with Locality Sensitive Hashing, giving an exact k-NN instead of approximate. The code was fast but the benefits really manifest with large numbers of codes (pretty much what we want). Contact…
Re: Fast Exact Search in Hamming Space with Multi-Index Hashing (2012)
#5Re: Fast Exact Search in Hamming Space with Multi-Index Hashing (2012)
#6Out of curiosity, what sort of problem would you apply this to?
Re: Fast Exact Search in Hamming Space with Multi-Index Hashing (2012)
#7Out of curiosity, what sort of problem would you apply this to?
Well this datastructure lets us find the k nearest neighbors in Hamming space (think binary vectors in binary vector space) quickly. If we can map features (for simplicity lets think of images) to points in hamming space such that similar features have a small hamming distance then we have a fast way of finding similar images. That is the problem that this paper proposes to help with, but I could easily see this also…