kayzhu / LSHash

A fast Python implementation of locality sensitive hashing.
MIT License
660 stars 158 forks source link

how to obtain the actual hash for each vector? #17

Open shashi-netra opened 7 years ago

shashi-netra commented 7 years ago
>>> lsh = LSHash(6, 8)
>>> lsh.index([1,2,3,4,5,6,7,8])

Is there any way to obtain the lsh signature from the index(..) method?