kayzhu / LSHash

A fast Python implementation of locality sensitive hashing.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is faster query time possible?

mehrrsaa opened this issue · comments

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