Skip to content

Commit 9695476

Browse files
author
Daniel Incicau
committed
Correct wSST_CC. Remove V_r parameter
1 parent 1b8d6e8 commit 9695476

File tree

6 files changed

+4
-10
lines changed

6 files changed

+4
-10
lines changed

notebooks/layer5_CC_CS_connection.ipynb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,14 @@
8080
"E_i = -80*mV # Inhibitory synaptic reversal potential\n",
8181
"\n",
8282
"V_t = -50*mV # spiking threashold\n",
83-
"V_r = E_l # reset potential\n",
8483
"\n",
8584
"c_d = 2600 * pA # back-propagates somatic spikes to to the dendrites\n",
8685
"g_s = 1300 * pA # propagates dendritic regenerative activity to soma\n",
8786
"g_d = 1200 * pA # propagates dendritic regenerative activity to denderites\n",
8887
"\n",
8988
"### Connectivity weight & probabilities\n",
9089
"# CS_CS 0, CS_SST 1, CS_PV 2, SST_CS 3, PV_CS 4, CC_CC 5, CC_SST 6, CC_PV 7, SST_CC 8, PV_CC 9, CC_CS 10, SST_PV 11, SST_SST 12, PV_PV 13, PV_SST 14, \n",
91-
"conn_weights = [0.27, 0.05, 1.01, 0.19, 0.32, 0.24, 0.09, 0.48, 0.19, 0.52, 0.19, 0.18, 0.19, 0.47, 0.44] # in nS\n",
90+
"conn_weights = [0.27, 0.05, 1.01, 0.19, 0.32, 0.24, 0.09, 0.48, 0.11, 0.52, 0.19, 0.18, 0.19, 0.47, 0.44] # in nS\n",
9291
"if USE_SYNAPSE_PROBS: \n",
9392
" # CS_CS 0, CS_SST 1, CS_PV 2, SST_CS 3, PV_CS 4, CC_CC 5, CC_SST 6, CC_PV 7, SST_CC 8, PV_CC 9, CC_CS 10, SST_PV 11, SST_SST 12, PV_PV 13, PV_SST 14, \n",
9493
" conn_probs = [0.16, 0.23, 0.18, 0.52, 0.43, 0.06, 0.26, 0.22, 0.13, 0.38, 0.09, 0.29, 0.1, 0.5, 0.14]\n",

notebooks/layer5_SST_Soma_selectivity.ipynb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,14 @@
8181
"E_i = -80*mV # Inhibitory synaptic reversal potential\n",
8282
"\n",
8383
"V_t = -50*mV # spiking threashold\n",
84-
"V_r = E_l # reset potential\n",
8584
"\n",
8685
"c_d = 2600 * pA # back-propagates somatic spikes to to the dendrites\n",
8786
"g_s = 1300 * pA # propagates dendritic regenerative activity to soma\n",
8887
"g_d = 1200 * pA # propagates dendritic regenerative activity to denderites\n",
8988
"\n",
9089
"### Connectivity weight & probabilities\n",
9190
"# CS_CS 0, CS_SST 1, CS_PV 2, SST_CS 3, PV_CS 4, CC_CC 5, CC_SST 6, CC_PV 7, SST_CC 8, PV_CC 9, CC_CS 10, SST_PV 11, SST_SST 12, PV_PV 13, PV_SST 14, \n",
92-
"conn_weights = [0.27, 0.05, 1.01, 0.19, 0.32, 0.24, 0.09, 0.48, 0.19, 0.52, 0.19, 0.18, 0.19, 0.47, 0.44] # in nS\n",
91+
"conn_weights = [0.27, 0.05, 1.01, 0.19, 0.32, 0.24, 0.09, 0.48, 0.11, 0.52, 0.19, 0.18, 0.19, 0.47, 0.44] # in nS\n",
9392
"if USE_SYNAPSE_PROBS: \n",
9493
" # CS_CS 0, CS_SST 1, CS_PV 2, SST_CS 3, PV_CS 4, CC_CC 5, CC_SST 6, CC_PV 7, SST_CC 8, PV_CC 9, CC_CS 10, SST_PV 11, SST_SST 12, PV_PV 13, PV_SST 14, \n",
9594
" conn_probs = [0.16, 0.23, 0.18, 0.52, 0.43, 0.06, 0.26, 0.22, 0.13, 0.38, 0.09, 0.29, 0.1, 0.5, 0.14]\n",

notebooks/layer5_sandbox.ipynb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,14 @@
8181
"E_i = -80*mV # Inhibitory synaptic reversal potential\n",
8282
"\n",
8383
"V_t = -50*mV # spiking threashold\n",
84-
"V_r = E_l # reset potential\n",
8584
"\n",
8685
"c_d = 2600 * pA # back-propagates somatic spikes to to the dendrites\n",
8786
"g_s = 1300 * pA # propagates dendritic regenerative activity to soma\n",
8887
"g_d = 1200 * pA # propagates dendritic regenerative activity to denderites\n",
8988
"\n",
9089
"### Connectivity weight & probabilities\n",
9190
"# CS_CS 0, CS_SST 1, CS_PV 2, SST_CS 3, PV_CS 4, CC_CC 5, CC_SST 6, CC_PV 7, SST_CC 8, PV_CC 9, CC_CS 10, SST_PV 11, SST_SST 12, PV_PV 13, PV_SST 14, \n",
92-
"conn_weights = [0.27, 0.05, 1.01, 0.19, 0.32, 0.24, 0.09, 0.48, 0.19, 0.52, 0.19, 0.18, 0.19, 0.47, 0.44] # in nS\n",
91+
"conn_weights = [0.27, 0.05, 1.01, 0.19, 0.32, 0.24, 0.09, 0.48, 0.11, 0.52, 0.19, 0.18, 0.19, 0.47, 0.44] # in nS\n",
9392
"if USE_SYNAPSE_PROBS: \n",
9493
" # CS_CS 0, CS_SST 1, CS_PV 2, SST_CS 3, PV_CS 4, CC_CC 5, CC_SST 6, CC_PV 7, SST_CC 8, PV_CC 9, CC_CS 10, SST_PV 11, SST_SST 12, PV_PV 13, PV_SST 14, \n",
9594
" conn_probs = [0.16, 0.23, 0.18, 0.52, 0.43, 0.06, 0.26, 0.22, 0.13, 0.38, 0.09, 0.29, 0.1, 0.5, 0.14]\n",

notebooks/test_different_inputs.ipynb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
"E_i = -80*mV # Inhibitory synaptic reversal potential\n",
5858
"\n",
5959
"V_t = -50*mV # spiking threashold\n",
60-
"V_r = E_l # reset potential\n",
6160
"\n",
6261
"c_d = 2600 * pA # back-propagates somatic spikes to to the dendrites\n",
6362
"g_s = 1300 * pA # propagates dendritic regenerative activity to soma\n",

notebooks/test_single_neurons.ipynb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
"E_i = -80*mV # Inhibitory synaptic reversal potential\n",
5555
"\n",
5656
"V_t = -50*mV # spiking threashold\n",
57-
"V_r = E_l # reset potential\n",
5857
"\n",
5958
"c_d = 2600 * pA # back-propagates somatic spikes to to the dendrites\n",
6059
"g_s = 1300 * pA # propagates dendritic regenerative activity to soma\n",

parameters.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"E_i": -80 * mV, # Inhibitory synaptic reversal potential
3434

3535
"V_t": -50 * mV, # spiking threshold
36-
"V_r": -70 * mV, # reset potential ~ same as E_l ~
3736

3837
"c_d": 2600 * pA, # back-propagates somatic spikes to the dendrites
3938
"g_s": 1300 * pA, # propagates dendritic regenerative activity to soma
@@ -59,7 +58,7 @@
5958
"pSST_CS_soma": [0.5, 0.5, 1, 1], # represents fraction of `pSST_CS*pSST_CS_weight` going to the CS soma; {1-this} goes to CS dendrite
6059
# `pSST_CS_soma` and `pSST_CC_soma` are taken in pairs
6160
"pSST_CC_soma": [0.5, 1, 0.5, 1], # represents fraction of `pSST_CC*pSST_CC_weight` going to the CC soma; {1-this} goes to CC dendrite
62-
"wSST_CC": 0.19,
61+
"wSST_CC": 0.11,
6362
"pSST_CC": 0.13,
6463
"pSST_CC_weight": 1, # represents fraction of `pSST_CC` for connection probabilities
6564

0 commit comments

Comments
 (0)