20 lines
435 B
Python
20 lines
435 B
Python
# config.py
|
|
|
|
SYNC_CONFIG = {
|
|
# Sampling
|
|
"sample_count": 20,
|
|
"scan_duration_sec": 45,
|
|
|
|
# Matching
|
|
"min_match_count": 3,
|
|
"min_match_score": 0.70,
|
|
"search_window_sec": 30,
|
|
|
|
# Logic & Decision Thresholds
|
|
"fix_drift": True,
|
|
"correction_method": "auto", # Options: "auto", "constant", "force_elastic"
|
|
"jitter_tolerance_ms": 300,
|
|
"min_drift_slope": 0.00005,
|
|
"linear_r2_threshold": 0.80,
|
|
}
|