-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Index intersection #10
Comments
Faiss is not specifically designed for this, but you can easily use it to compute |
Thanks for the lightning-fast answer :) Sure, I was wondering if one can do it in sub-linear time. |
Right. Yet, for this size of the problem (very small considering that Faiss is typically designed for dozen millions to billions of vectors), brute-force will certainly be the fastest way to compute the |
Update error handling
I have a few thousand sets of vectors for which I need to answer
ClosestPairOfPoints(A, B)
queries, that is find elementa
fromA
andb
fromB
that minimized(a, b)
. Is there a way I could support such queries with Faiss?Thanks!
The text was updated successfully, but these errors were encountered: