Skip to content

Commit cdd3ed9

Browse files
committed
Fix CV threshold to 0.20 (matches Python experiments)
1 parent ee6ec3b commit cdd3ed9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

services/remOptimizedClassifier.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const MAX_RECENT_HR_SAMPLES = 20;
122122
let rmssdHistory: number[] = [];
123123
const MAX_RMSSD_HISTORY = 10;
124124
let consecutiveRemSignals = 0;
125-
const CV_THRESHOLD = 0.3;
125+
const CV_THRESHOLD = 0.2;
126126
const REM_CONSECUTIVE_REQUIRED = 2;
127127

128128
// ============================================================================

0 commit comments

Comments
 (0)