-
Notifications
You must be signed in to change notification settings - Fork 12
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
Use better ANN library #18
Comments
Does FALCONN support sparse data in sparse matrix format ? Or it just do the optimization on sparse data in dense format? |
According to How to use FALCONN, it can be used with dense or sparse vectors. The sparse ones have to be Thinking about it, that makes it little better than the others: The user has to copy their whole data to match the format FALCONN understands. |
Huh, I missed that Aaron lun created BiocNeighbors! I have to investigate this :D |
Hope to integrate |
Hi @flying-sheep, |
Instead of using my built in cover-tree approximate nearest neighbor lib, new options have popped up:
*Annoy is super flexible, but neither the Python nor R bindings support sparse matrices. I think sparse matrix support might be custom added though.
** I think you can extend HNSWLIB with more distances, but it’s not as easy as doing the same with Annoy
The text was updated successfully, but these errors were encountered: