Skip to content
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

Benchmark brute force knn #2063

Merged
merged 12 commits into from
Dec 20, 2023
Prev Previous commit
Next Next commit
fix for no build/search params
  • Loading branch information
benfred committed Dec 13, 2023
commit 49a3ac029d1b1856960e60627a9e57436be7e503
4 changes: 2 additions & 2 deletions python/raft-ann-bench/src/raft-ann-bench/run/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,8 @@ def add_algo_group(group_list):
)
if executable not in executables_to_run:
executables_to_run[executable] = {"index": []}
build_params = algos_conf[algo]["groups"][group]["build"]
search_params = algos_conf[algo]["groups"][group]["search"]
build_params = algos_conf[algo]["groups"][group]["build"] or {}
search_params = algos_conf[algo]["groups"][group]["search"] or {}

param_names = []
param_lists = []
Expand Down