You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some of our vector search cases, we use quantization to reduce the amount of memory that the index will consume during search. This comes with the tradeoff that recall will be worse because the quantization is lossy. One strategy to improve recall is to "rescore" the top results from the vector search with scores that originate from the full precision vectors. For example, the query would look like this:
Description
For some of our vector search cases, we use quantization to reduce the amount of memory that the index will consume during search. This comes with the tradeoff that recall will be worse because the quantization is lossy. One strategy to improve recall is to "rescore" the top results from the vector search with scores that originate from the full precision vectors. For example, the query would look like this:
I would like to add this option to the existing vector search queries in a configurable fashion.
The text was updated successfully, but these errors were encountered: