kayzhu / LSHash

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

Is faster query time possible? #24

Open mehrrsaa opened 6 years ago

mehrrsaa commented 6 years ago

Hi,

I was wondering if there would be any way to reduce the query time. For example, for my use case with the following parameters, it is 0.2 s which would be too slow for querying my whole dataset: lsh = LSHash(10, 300) lsh.query(example_vector, num_results=5) (changing num_results doesn't have an effect on its run time)

Any suggestions would be appreciated!

Thank you