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

Tweak score tolerance for regressions #2571

Merged
merged 4 commits into from
Aug 18, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/python/run_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def construct_convert_commands(yaml_data):
dl19_hnsw_int8_onnx['bge-hnsw-int8-onnx'] = 0.025
dl19_hnsw_int8_onnx['cos-dpr-distil-hnsw-int8-onnx'] = 0.025
dl19_hnsw_int8_cached = defaultdict(lambda: 0.01)
dl19_hnsw_int8_cached['bge-hnsw-int8-cached'] = 0.015
dl19_hnsw_int8_cached['bge-hnsw-int8-cached'] = 0.02
dl19_hnsw_int8_cached['cohere-embed-english-v3.0-hnsw-int8-cached'] = 0.02
dl19_hnsw_int8_cached['cos-dpr-distil-hnsw-int8-cached'] = 0.025
dl19_hnsw_int8_cached['openai-ada2-hnsw-int8-cached'] = 0.015
Expand All @@ -348,8 +348,8 @@ def construct_convert_commands(yaml_data):
'hnsw-cached': dl19_hnsw_cached,
}

dl20_hnsw_int8_onnx = defaultdict(lambda: 0.015)
dl20_hnsw_int8_cached = defaultdict(lambda: 0.015)
dl20_hnsw_int8_onnx = defaultdict(lambda: 0.02)
dl20_hnsw_int8_cached = defaultdict(lambda: 0.02)
dl20_hnsw_onnx = defaultdict(lambda: 0.015)
dl20_hnsw_cached = defaultdict(lambda: 0.015)
dl20_hnsw_cached['cohere-embed-english-v3.0-hnsw-cached'] = 0.025
Expand Down
Loading