-
Notifications
You must be signed in to change notification settings - Fork 7
Print more stats; print WS_SEARCH as ef #29
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
base: update.redisearch
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -121,6 +121,12 @@ def run_experiment( | |||||||||||||||
upload_stats = self.uploader.upload( | ||||||||||||||||
distance=dataset.config.distance, records=reader.read_data(upload_start_idx,upload_end_idx) | ||||||||||||||||
) | ||||||||||||||||
memory_usage = upload_stats["memory_usage"] | ||||||||||||||||
if (used_memory := memory_usage.get("used_memory")) is not None: | ||||||||||||||||
print(f"{used_memory=}") | ||||||||||||||||
if (index_info := memory_usage.get("index_info")) is not None: | ||||||||||||||||
if (vector_index_sz_mb := index_info.get("vector_index_sz_mb")) is not None: | ||||||||||||||||
print(f"{vector_index_sz_mb=}") | ||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This code assumes
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||||||||||
|
||||||||||||||||
if not DETAILED_RESULTS: | ||||||||||||||||
# Remove verbose stats from upload results | ||||||||||||||||
|
@@ -157,6 +163,8 @@ def run_experiment( | |||||||||||||||
ef = "default" | ||||||||||||||||
if "search_params" in search_params: | ||||||||||||||||
ef = search_params["search_params"].get("ef", "default") | ||||||||||||||||
if ef == "default": | ||||||||||||||||
ef = search_params["search_params"].get("WS_SEARCH", "default") | ||||||||||||||||
client_count = search_params.get("parallel", 1) | ||||||||||||||||
|
||||||||||||||||
# Filter by client count if parallels is specified | ||||||||||||||||
|
@@ -186,6 +194,7 @@ def run_experiment( | |||||||||||||||
f"Calibrated {top=} {precision=} {calibration_value=} {calibration_precision=!s}" | ||||||||||||||||
) | ||||||||||||||||
searcher.search_params["search_params"][calibration_param] = calibration_value | ||||||||||||||||
ef = calibration_value | ||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||||||||||
|
||||||||||||||||
for repetition in range(1, REPETITIONS + 1): | ||||||||||||||||
print( | ||||||||||||||||
|
@@ -195,6 +204,7 @@ def run_experiment( | |||||||||||||||
search_stats = searcher.search_all( | ||||||||||||||||
dataset.config.distance, reader.read_queries(), num_queries | ||||||||||||||||
) | ||||||||||||||||
print(f"{search_stats['mean_precisions']=!s}, {search_stats['rps']=}") | ||||||||||||||||
# ensure we specify the client count in the results | ||||||||||||||||
search_params["parallel"] = client_count | ||||||||||||||||
if not DETAILED_RESULTS: | ||||||||||||||||
|
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.
The walrus operator assignment in the condition will fail if
memory_usage
is None or not a dictionary. Add a null check formemory_usage
before calling.get()
method.Copilot uses AI. Check for mistakes.