feat: raise default scan threshold from 0.30 to 0.50

Calibrated classifiers output true probabilities, so 0.50 is the
natural decision boundary.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-20 10:18:35 +02:00
parent 3a37dddfd9
commit 7cd31ebe55
+1 -1
View File
@@ -737,7 +737,7 @@ def prefetch_audio(video_path: str, embed_model: str | None = None,
def scan_video( def scan_video(
video_path: str, video_path: str,
model: dict = None, model: dict = None,
threshold: float = 0.30, threshold: float = 0.50,
hop: float = 1.0, hop: float = 1.0,
window: float = _WINDOW, window: float = _WINDOW,
cancel_flag: object = None, cancel_flag: object = None,