Lower provisional review threshold

This commit is contained in:
Melbar
2026-05-02 10:09:30 +02:00
parent e4dd0a77b2
commit 535176c144
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -259,7 +259,7 @@ def load_config(
deep_scan = DeepScanConfig(
coarse_step_seconds=float(cv_raw["deep_scan"]["coarse_step_seconds"]),
match_threshold=float(cv_raw["deep_scan"]["match_threshold"]),
provisional_match_threshold=float(cv_raw["deep_scan"].get("provisional_match_threshold", 0.45)),
provisional_match_threshold=float(cv_raw["deep_scan"].get("provisional_match_threshold", 0.43)),
coarse_candidate_threshold=float(cv_raw["deep_scan"].get("coarse_candidate_threshold", cv_raw["deep_scan"]["match_threshold"])),
sequence_score_weight=float(cv_raw["deep_scan"].get("sequence_score_weight", 0.55)),
span_score_weight=float(cv_raw["deep_scan"].get("span_score_weight", 0.15)),