A few questions about the DiehlAndCook2015 model #646
rafaelblevin821
started this conversation in
General
Replies: 1 comment 3 replies
-
The implementation of the DiehlAndCookNodes neuron can be found here and the implementation of the LIFNodes can be found here, you can find an answers to most of your questions. In brief, the code give you an option to use two different resting Vmem one for Post-spike reset and the other for rest value that use to calculate the decaying of the Vmem during inactivity. You can use the two values if you need or set them to the same value if you dont need them. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I just have a few questions about the DiehlAndCook2015 model that I am trying to understand.
I know the documentation briefly describes the parameters, but I'm still unsure how they are implemented.
I am particularly interested in the parameters
reset
,tc_decay
, andtc_trace
.Why is a
reset
value used when we have a resting potential value?If
tc_decay
is 100 by default, does that not limit the number of spikes to <4 if the simulation time is, say, 500?Why is
tc_trace
needed when the tc_decay is in place?Also, are these all callable arguments from the script that can be changed if necessary?
I'd be grateful for any insight on this.
Beta Was this translation helpful? Give feedback.
All reactions