Skip to content

Commit

Permalink
Tweak score tolerance for regressions
Browse files Browse the repository at this point in the history
  • Loading branch information
lintool committed Jul 30, 2024
1 parent 10d9388 commit ac5592a
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/main/python/run_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,16 +348,11 @@ def construct_convert_commands(yaml_data):
'hnsw-cached': dl19_hnsw_cached,
}

dl20_hnsw_int8_onnx = defaultdict(lambda: 0.01)
dl20_hnsw_int8_onnx['bge-hnsw-int8-onnx'] = 0.015
dl20_hnsw_int8_cached = defaultdict(lambda: 0.01)
dl20_hnsw_int8_cached['bge-hnsw-int8-cached'] = 0.015
dl20_hnsw_int8_cached['cohere-embed-english-v3.0-hnsw-int8-cached'] = 0.015
dl20_hnsw_int8_onnx = defaultdict(lambda: 0.015)
dl20_hnsw_int8_cached = defaultdict(lambda: 0.015)
dl20_hnsw_onnx = defaultdict(lambda: 0.015)
dl20_hnsw_cached = defaultdict(lambda: 0.01)
dl20_hnsw_cached['bge-hnsw-cached'] = 0.015
dl20_hnsw_cached = defaultdict(lambda: 0.015)
dl20_hnsw_cached['cohere-embed-english-v3.0-hnsw-cached'] = 0.025
dl20_hnsw_cached['cos-dpr-distil-hnsw-cached'] = 0.015

dl20_hnsw_tolerance = {
'hnsw-int8-onnx': dl20_hnsw_int8_onnx,
Expand Down

0 comments on commit ac5592a

Please sign in to comment.