-
Notifications
You must be signed in to change notification settings - Fork 83
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
Make scann range search results more accurate #179
Conversation
Signed-off-by: chasingegg <[email protected]>
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: chasingegg The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@chasingegg 🔍 Important: PR Classification Needed! For efficient project management and a seamless review process, it's essential to classify your PR correctly. Here's how:
For any PR outside the kind/improvement category, ensure you link to the associated issue using the format: “issue: #”. Thanks for your efforts and contribution to the community!. |
/hold |
@@ -1332,7 +1332,8 @@ void IndexIVFPQFastScan::range_search_implem_12( | |||
TIC; | |||
|
|||
// prepare the result handlers | |||
std::unique_ptr<RangeSearchResultHandler<C, true>> handler(new RangeSearchResultHandler<C, true>(result, radius, 0, bitset)); | |||
float radius_thresh = C::is_max ? radius * 1.2 : radius * 0.6; // to make range search result more accurate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Such a change should never be done on the Faiss side, but on the Knowhere side. Please move it to ivf.cc
.
close this, need further investigation |
Related #171
Range search's recall of ScaNN is poor due to quantization. Enlarge radius to take more candidates into consideration.
Before change
After