-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to do an incremental knn search? #163
Comments
This is the paper proposing incremental knn algorithm: |
So you want to adapt this library to enable a knn search? Why? Is this a course assignment? Do you have a real use case? I'm happy to consider a PR if it makes little change to existing code. |
Thanks for your reply. I want to realize the algorithm proposed in a paper where the knn search is adopted. |
Ok, implementing knn algorithm as described is not a priority for me at the moment but could be done. I'm happy to consider a PR from you or another member of the community, otherwise I may have a look at it medium term. |
Thanks for your help! |
Incremental knn search save the priority queue in each round generated by knn search if best-first strategy is adopted, and use priority queue saved in the previous round to search knn in the current round.
I want to do an incremental knn search. Does anyone can teach me, thank you very much!
The text was updated successfully, but these errors were encountered: