-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02-ET_preprocessing_parameters.json
66 lines (66 loc) · 1.68 KB
/
02-ET_preprocessing_parameters.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"visit": "1",
"data_type": "eyetrack",
"plot_factors": ["task relevance", "duration", "category", "SOA", "SOA_lock"],
"plot_blinks": false,
"preprocessing_steps": [
"annotate_nan",
"hershman_blinks",
"remove_long_blinks",
"interpolate_blinks",
"gaze_to_dva",
"extract_eyelink_events",
"epochs",
"reject_bad_epochs"
],
"events_of_interest": ["vis_onset*"],
"plot_calibration": true,
"beh_file_name": "sub-{}_ses-{}_run-{}_task-{}_events.csv",
"log_file_columns": ["trial_response_vis", "trial_accuracy_aud", "trial_second_button_press", "RT_aud", "RT_vis",
"stim_jit"],
"discard_bad_subjects": {
"bad_trials_threshold": 0.5,
"nan_threshold": 0.5
},
"annotate_nan": {
"eyes": ["left", "right"],
"nan_annotation": "BAD_nan"
},
"hershman_blinks": {
"eyes": ["left", "right"],
"replace_eyelink_blinks": true
},
"remove_long_blinks": {
"max_blinks_dur": 2.0,
"new_description": "BAD_lost_tracking"
},
"gaze_to_dva": {
"eyes": ["left", "right"]
},
"interpolate_blinks": {
"buffer": [0.02, 0.02],
"interpolate_gaze": true
},
"extract_eyelink_events": {
"eyes": ["left", "right"],
"events": ["blink", "saccade", "fixation"]
},
"epochs": {
"picks": "all",
"tmin": -1,
"tmax": 3.5,
"baseline": null,
"events_of_interest": [
"vis_onset"
],
"reject_by_annotation": true,
"metadata_column": ["event type", "task relevance", "duration", "category", "orientation", "identity",
"SOA", "SOA_lock", "pitch"]
},
"reject_bad_epochs": {
"baseline_window": [-0.2, 0.0],
"z_thresh": 2,
"eyes": ["left", "right"],
"exlude_beh": true
}
}