Skip to content

Commit 6616018

Browse files
committed
change WARNING to 0.90 default
1 parent 6e9a984 commit 6616018

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

ibllib/qc/task_metrics.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,8 @@
6161

6262
class TaskQC(base.QC):
6363
"""A class for computing task QC metrics"""
64-
criteria = {"PASS": 0.99, "WARNING": 0.95, "FAIL": 0}
64+
criteria = {"PASS": 0.99, "WARNING": 0.90, "FAIL": 0} # Note: WARNING was 0.95
6565
fcns_value2status = {'default': lambda x: TaskQC._thresholding(x),
66-
# '_task_stimFreeze_delays': lambda x: - 1,
67-
# '_task_response_stimFreeze_delays': lambda x: -1,
68-
# '_task_passed_trial_checks': lambda x: -1,
69-
# '_task_iti_delays': lambda x: -1,
7066
'_task_stimOff_itiIn_delays': lambda x:
7167
TaskQC._thresholding(x, thresholds={"PASS": 0.99, "WARNING": 0}),
7268
'_task_positive_feedback_stimOff_delays': lambda x:

0 commit comments

Comments
 (0)