-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrategies.py
40 lines (40 loc) · 1.15 KB
/
strategies.py
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
strategies = {
"HMPCompCorScrub": {
"strategy": ["high_pass", "motion", "compcor", "scrub"],
"motion": "basic",
"compcor": "anat",
"n_compcor": "auto",
"acompcor_combined": True,
"scrub": "basic",
"fd_thresh": 0.9,
"std_dvars_thresh": 3.0,
},
"HMPCompCorScrubGS": {
"strategy": ["high_pass", "motion", "compcor", "scrub", "global"],
"motion": "basic",
"compcor": "anat",
"n_compcor": "auto",
"acompcor_combined": True,
"scrub": "basic",
"fd_thresh": 0.9,
"std_dvars_thresh": 3.0,
"global_signal": "basic",
},
"HMPWMCSFScrub": {
"strategy": ["high_pass", "motion", "wm_csf", "scrub"],
"motion": "basic",
"wm_csf": "full",
"scrub": "basic",
"fd_thresh": 0.9,
"std_dvars_thresh": 3.0,
},
"HMPWMCSFScrubGS": {
"strategy": ["high_pass", "motion", "wm_csf", "scrub", "global"],
"motion": "basic",
"wm_csf": "full",
"scrub": "basic",
"fd_thresh": 0.9,
"std_dvars_thresh": 3.0,
"global_signal": "basic",
},
}