-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathparams.stacy.py
103 lines (93 loc) · 3.38 KB
/
params.stacy.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
noisebursts = {'stimDur':0.1,
'isiMean':0.9,
'isiHalfRange': 0.01,
'noiseAmp':0.1,
'stimType' : 'Noise',
'minFreq':2000,
'maxFreq':30000,
'minInt':40,
'maxInt':70,
'numInt':4,
'subject':'gosi004',
'experimenter' : 'stacy'}
tuningCurve1 = {'stimDur':0.1,
'isiMean':0.8,
'isiHalfRange': 0.1,
'noiseAmp':0.05,
'stimType' : 'Chord',
'minFreq':2000,
'maxFreq':40000,
'minInt':50,
'maxInt':50,
'numInt':1,
'numTones':16,
'subject':'gosi004',
'experimenter' : 'stacy'}
tuningCurve2 = {'stimDur':0.1,
'isiMean':0.8,
'isiHalfRange': 0.1,
'noiseAmp':0.05,
'stimType' : 'Chord',
'minFreq':2000,
'maxFreq':40000,
'minInt':50,
'maxInt':50,
'numInt':1,
'numTones':16,
'subject':'gosi008',
'experimenter' : 'stacy'}
tuningCurve3 = {'stimDur':0.1,
'isiMean':0.8,
'isiHalfRange': 0.1,
'noiseAmp':0.05,
'stimType' : 'Chord',
'minFreq':2000,
'maxFreq':40000,
'minInt':50,
'maxInt':50,
'numInt':1,
'numTones':16,
'subject':'gosi001',
'experimenter' : 'stacy'}
tuningCurve4 = {'stimDur':0.1,
'isiMean':0.8,
'isiHalfRange': 0.1,
'noiseAmp':0.05,
'stimType' : 'Chord',
'minFreq':2000,
'maxFreq':40000,
'minInt':50,
'maxInt':50,
'numInt':1,
'numTones':16,
'subject':'gosi010',
'experimenter' : 'jardon'}
psyCurveChangeReward = {'punishTimeError':4,
'delayToTargetMean':0.2,
'currentBlock':'more_left',
'psycurveMode':'off',
'automationMode':'left_right_left',
'punishTimeEarly':0.5,
'punishTimeError':2,
'punishSoundAmplitude':0.0,
'trialsPerBlock':200,
'baseWaterValveL':0.015,
'baseWaterValveR':0.015,
'factorWaterValveL':4,
'factorWaterValveR':4}
pardict = {'subject':'gosi004','experimenter':'stacy'}
pardict.update({'lowFreq':8100,'highFreq':19200,'targetIntensityMode':'fixed'})
pardict.update(psyCurveChangeReward)
gosi004 = pardict.copy()
pardict = {'subject':'gosi008','experimenter':'stacy'}
pardict.update({'lowFreq':6200,'highFreq':19200,'targetIntensityMode':'fixed'})
pardict.update(psyCurveChangeReward)
gosi008 = pardict.copy()
pardict = {'subject':'gosi001','experimenter':'stacy'}
pardict.update({'lowFreq':6200,'highFreq':19200,'targetIntensityMode':'fixed'})
pardict.update(psyCurveChangeReward)
gosi001 = pardict.copy()
pardict = {'subject':'gosi010','experimenter':'stacy'}
pardict.update({'lowFreq':6200,'highFreq':19200,'targetIntensityMode':'fixed'})
pardict.update(psyCurveChangeReward)
gosi010 = pardict.copy()