]> git.armaanb.net Git - norepinephrine_wm.git/blob - conf.py
final update
[norepinephrine_wm.git] / conf.py
1 import numpy as np
2
3 dt = 0.05              # Time step
4 probe_dt = 0.1         # Time step to sample from probe
5 t_cue = 1.0            # Duration of cue presentation
6 t_delay = 8.0          # Duration of delay period between cue and decision
7 cue_scale = 1.0        # How strong the cuelus is from the visual system
8 misperceive = 0.1      # ???
9 time_scale = 0.4       # ???
10 steps = np.linspace(0, 750, 250) # Steps to use
11 noise_wm = 0.005       # Standard deviation of white noise added to WM
12 noise_decision = 0.005 # Standard deviation of white noise added to decision
13 neurons_decide = 100   # Number of neurons for decision
14 neurons_inputs = 100   # Number of neurons for inputs ensemble
15 neurons_wm = 100       # Number of neurons for working memory ensemble
16 tau_wm = 0.1           # Synapse on recurrent connection in wm
17 tau = 0.01             # Synaptic time constant between ensembles
18 seed = 1               # Seed for RNG
19 n_trials = 1