X-Git-Url: https://git.armaanb.net/?p=norepinephrine_wm.git;a=blobdiff_plain;f=conf.py;h=b9664989ef3d3b51eecf46e6e93b318393967e41;hp=02c981c9e2ba9f967d5c63319917601232adec08;hb=ef0a12f02c0a7fc03b69cfbc3bc9cf88f5a716c5;hpb=864e1ff852299ff175ebc67ee48766d565c4bb29 diff --git a/conf.py b/conf.py index 02c981c..b966498 100644 --- a/conf.py +++ b/conf.py @@ -1,9 +1,12 @@ +import numpy as np + dt = 0.01 # Time step t_cue = 1.0 # Duration of cue presentation +t_delay = 8.0 # Duration of delay period between cue and decision cue_scale = 1.0 # How strong the cuelus is from the visual system -perceived = 0 # ??? +misperceive = 0.1 # ??? time_scale = 0.4 # ??? -steps = 100 # How fine to run the outer loop of the simulation +steps = np.arange(750) # Steps to use noise_wm = 0.005 # Standard deviation of white noise added to WM noise_decision = 0.005 # Standard deviation of white noise added to decision neurons_decide = 100 # Number of neurons for decision @@ -11,4 +14,3 @@ neurons_inputs = 100 # Number of neurons for inputs ensemble neurons_wm = 100 # Number of neurons for working memory ensemble tau_wm = 0.1 # Synapse on recurrent connection in wm tau = 0.01 # Synaptic time constant between ensembles -t_delay = 8.0 # Duration of delay period between cue and decision