]> git.armaanb.net Git - norepinephrine_wm.git/blob - norepinephrine_wm/parameters.txt
Initial commit
[norepinephrine_wm.git] / norepinephrine_wm / parameters.txt
1 {
2 'seed':3, #for the simulator build process
3 'n_trials':3,
4 'n_processes':9,
5 'dt':0.001, #timestep
6 'dt_sample':0.01, #timestep for data recording through probes
7 't_cue':1.0, #duration of cue presentation
8 't_delay':8.0, #duration of delay period between cue and decision
9 'misperceive':0.1, #chance of failing to perceive the cue, causing no info to go into WM
10
11 'neurons_inputs':100, #neurons for the inputs ensemble
12 'neurons_wm':1000, #neurons for workimg memory ensemble
13 'neurons_decide':100, #neurons for decision or basal ganglia
14 'time_scale':0.4, #how fast does the 'time' dimension accumulate in WM neurons
15 'cue_scale':1.0, #how strong is the cueulus from the visual system
16 'tau':0.01, #synaptic time constant between ensembles
17 'tau_wm':0.1, #synapse on recurrent connection in wm
18 'noise_wm':0.005, #std of full-spectrum white noise inject into wm.neurons
19 'noise_decision':0.3, #std of added gaussian noise in the default decision procedure; 
20
21 'decision_type':'default', #decision procedure: 'default', 'basal_ganglia'
22 'drug_type':'biophysical', #drug simulation: 'neural','functional','biophysical'                                
23 'drugs':['control','PHE','GFC'], #names of the of drugs to simulate, see dicts below
24 'drug_effect_neural':{'control':0.0,'PHE':-0.2,'GFC':0.5}, #mean of cue onto wm.neurons
25 'drug_effect_biophysical':{'control':[1.0,1,0],'PHE':[0.99,1.02],'GFC':[1.05,0.95]}, #k_gain, k_bias
26 'drug_effect_functional':{'control':1.0,'PHE':0.985,'GFC':1.03}, #k_multiply
27
28 'enc_min_cutoff':0.3, #minimum cutoff for "weak" encoders in preferred directions
29 'enc_max_cutoff':0.6, #maximum cutoff for "weak" encoders in preferred directions
30 'sigma_smoothing':0.005, #gaussian smoothing applied to spike data to calculate firing rate
31 'frac':0.01, #fraction of neurons in WM to add to firing rate dataframe and plot
32 }