-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathparams.sean.py
119 lines (99 loc) · 3.7 KB
/
params.sean.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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
"""
Params for Sean.
"""
FM_stage_one = {'outcomeMode': 'sides_direct',
'activePort': 'both',
'allowEarlyWithdrawal': 'on',
'antibiasMode': 'off',
'automationMode': 'off',
'psycurveMode': 'off',
'experimenter': 'sean'}
FM_stage_two = {'outcomeMode': 'direct',
'activePort': 'both',
'allowEarlyWithdrawal': 'on',
'antibiasMode': 'off',
'automationMode': 'off',
'psycurveMode': 'off',
'experimenter': 'sean'}
FM_stage_three = {'outcomeMode': 'on_next_correct',
'activePort': 'both',
'allowEarlyWithdrawal': 'on',
'antibiasMode': 'off',
'automationMode': 'off',
'psycurveMode': 'off',
'experimenter': 'sean'}
FM_stage_three2 = {'outcomeMode': 'on_next_correct',
'activePort': 'both',
'allowEarlyWithdrawal': 'off',
'antibiasMode': 'off',
'automationMode': 'off',
'psycurveMode': 'off',
'experimenter': 'sean'}
FM_stage_four = {'outcomeMode': 'on_next_correct',
'activePort': 'both',
'allowEarlyWithdrawal': 'off',
'antibiasMode': 'off',
'automationMode': 'increase_delay',
'psycurveMode': 'off',
'experimenter': 'sean'}
FM_stage_five = {'outcomeMode': 'only_if_correct',
'activePort': 'both',
'allowEarlyWithdrawal': 'off',
'antibiasMode': 'on',
'delayToTargetMean':0.3,
'automationMode': 'off',
'psycurveMode': 'off',
'experimenter': 'sean'}
FM_stage_six = {'outcomeMode': 'only_if_correct',
'activePort': 'both',
'allowEarlyWithdrawal': 'off',
'antibiasMode': 'off',
'delayToTargetMean':0.3,
'automationMode': 'off',
'psycurveMode': 'off',
'experimenter': 'sean'}
FM_stage_seven = {'outcomeMode': 'only_if_correct',
'activePort': 'both',
'allowEarlyWithdrawal': 'off',
'antibiasMode': 'off',
'delayToTargetMean':0.3,
'automationMode': 'off',
'psycurveMode': 'uniform',
'experimenter': 'sean'}
FM_stage_eight = {'outcomeMode': 'only_if_correct',
'activePort': 'both',
'allowEarlyWithdrawal':'off',
'antibiasMode': 'off',
'delayToTargetMean':0.3,
'automationMode': 'off',
'psycurveMode': 'controls',
'experimenter': 'sean'}
FM_six = {'lickBeforeStimOffset': 'ignore',
'rewardSideMode': 'random',
'soundType': 'FM_direction',
'psycurveMode': 'uniform',
'taskMode': 'discriminate_stim',
'experimenter': 'sean'}
pals020 = {'subject':'pals020',
}
pals022 = {'subject':'pals022',
}
frem001 = {'subject':'frem001',
}
frem002 = {'subject':'frem002',
}
frem003 = {'subject':'frem003',
}
frem004 = {'subject':'frem004',
}
frem005 = {'subject':'frem005',
}
pals020.update(FM_six)
pals022.update(FM_six)
frem001.update(FM_stage_eight)
frem002.update(FM_stage_eight)
frem003.update(FM_stage_eight)
frem004.update(FM_stage_eight)
frem005.update(FM_stage_eight)
#python fm_discrimination.py params.sean.py frem001 (for frem mice, freely moving)
#python headfixed_twochoice.py params.sean.py pals020 (for pals mice, headfixed)