Modeling neurons in NESTML
Writing the NESTML model
The top-level element of the model is model, followed by a name. All other blocks appear inside of here.
model hodkin_huxley_neuron:
# [...]
Neuronal interactions
Input
A neuron model written in NESTML can be configured to receive two distinct types of input: spikes and continuous-time values. This can be indicated using the following syntax:
input:
AMPA_spikes <- spike
I_stim pA <- continuous
The general syntax is:
port_name <- inputQualifier spike
port_name dataType <- continuous
The spiking input ports are declared without a data type, whereas the continuous input ports must have a data type. For spiking input ports, the qualifier keywords decide whether inhibitory and excitatory inputs are lumped together into a single named input port, or if they are separated into differently named input ports based on their sign. When processing a spike event, some simulators (including NEST) use the sign of the amplitude (or weight) property in the spike event to indicate whether it should be considered an excitatory or inhibitory spike. By using the qualifier keywords, a single spike handler can route each incoming spike event to the correct input buffer (excitatory or inhibitory). Compare:
input:
# [...]
all_spikes <- spike
In this case, all spike events will be processed through the all_spikes input port. A spike weight could be positive or negative, and the occurrences of all_spikes in the model should be considered a signed quantity.
input:
# [...]
AMPA_spikes <- excitatory spike
GABA_spikes <- inhibitory spike
In this case, spike events that have a negative weight are routed to the GABA_spikes input port, and those that have a positive weight to the AMPA_spikes port.
It is equivalent if either both inhibitory and excitatory are given, or neither: an unmarked port will by default handle all incoming presynaptic spikes.
Keyword |
The incoming weight … |
|---|---|
none, or |
… may be positive or negative. It is added to the buffer with signed value (positive or negative). |
|
… should not be negative. It is added to the buffer with non-negative magnitude . |
|
… should be negative. It is added to the buffer with non-negative magnitude . |
Integrating current input
The current port symbol (here, I_stim) is available as a variable and can be used in expressions, e.g.:
equations
V_m' = -V_m/tau_m + ... + I_stim
input:
I_stim pA <- continuous
Integrating spiking input
Spikes arriving at the input port of a neuron can be written as a spike train :
where is the weight of spike .
To model the effect that an arriving spike has on the state of the neuron, a convolution with a kernel can be used. The kernel defines the postsynaptic response kernel, for example, an alpha (bi-exponential) function, decaying exponential, or a delta function. (See Kernel functions for how to define a kernel.) The convolution of the kernel with the spike train is defined as follows:
For example, say there is a spiking input port defined named spikes. A decaying exponential with time constant tau_syn is defined as postsynaptic kernel G. Their convolution is expressed using the convolve() function, which takes a kernel and input port, respectively, as its arguments:
equations:
kernel G = exp(-t / tau_syn)
inline I_syn pA = convolve(G, spikes) * pA
V_m' = -V_m / tau_m + I_syn / C_m
Note that in this example, the intended physical unit (pA) was assigned by multiplying the scalar convolution result with the unit literal. By the definition of convolution, convolve(G, spikes) will have the unit of kernel G multiplied by the unit of spikes and unit of time, i.e., [G] * [spikes] * s. Kernel functions in NESTML are always untyped and the unit of spikes is as discussed above. As a result, the unit of convolution is , a scalar quantity without a unit.
The incoming spikes could have been equivalently handled with an onReceive event handler block:
state:
I_syn pA = 0 pA
equations:
I_syn' = -I_syn / tau_syn
V_m' = -V_m / tau_m + I_syn / C_m
onReceive(spikes):
I_syn += spikes * pA * s
Note that in this example, the intended physical unit (pA) was assigned by multiplying the type of the input port spikes (which is 1/s) by pA·s, resulting in a unit of pA for I_syn.
(Re)setting synaptic integration state
When convolutions are used, additional state variables are required for each pair (shape, spike input port) that appears as the parameters in a convolution. These variables track the dynamical state of that kernel, for that input port. The number of variables created corresponds to the dimensionality of the kernel. For example, in the code block above, the one-dimensional kernel G is used in a convolution with spiking input port spikes. During code generation, a new state variable called G__conv__spikes is created for this combination, by joining together the name of the kernel with the name of the spike buffer using (by default) the string “__conv__”. If the same kernel is used later in a convolution with another spiking input port, say spikes_GABA, then the resulting generated variable would be called G__conv__spikes_GABA, allowing independent synaptic integration between input ports but allowing the same kernel to be used more than once.
The process of generating extra state variables for keeping track of convolution state is normally hidden from the user. For some models, however, it might be required to set or reset the state of synaptic integration, which is stored in these internally generated variables. For example, we might want to set the synaptic current (and its rate of change) to 0 when firing a dendritic action potential. Although we would like to set the generated variable G__conv__spikes to 0 in the running example, a variable by this name is only generated during code generation, and does not exist in the namespace of the NESTML model to begin with. To still allow referring to this state in the context of the model, it is recommended to use an inline expression, with only a convolution on the right-hand side.
For example, suppose we define:
inline g_dend pA = convolve(G, spikes)
Then the name g_dend can be used as a target for assignment:
update:
g_dend = 42 pA
This also works for higher-order kernels, e.g. for the second-order alpha kernel :
kernel H'' = (-2/tau_syn) * H' - 1/tau_syn**2) * H
We can define an inline expression with the same port as before, spikes:
inline h_dend pA = convolve(H, spikes)
The name h_dend now acts as an alias for this particular convolution. We can now assign to the inline defined variable up to the order of the kernel:
update:
h_dend = 42 pA
h_dend' = 10 pA/ms
For more information, see the Active dendrite tutorial.
Multiple input ports
If there is more than one line specifying a spike or continuous port with the same sign, a neuron with multiple receptor types is created. For example, say that we define three spiking input ports as follows:
input:
spikes1 <- spike
spikes2 <- spike
spikes3 <- spike
For the sake of keeping the example simple, we assign a decaying exponential-kernel postsynaptic response to each input port, each with a different time constant:
equations:
kernel I_kernel1 = exp(-t / tau_syn1)
kernel I_kernel2 = exp(-t / tau_syn2)
kernel I_kernel3 = -exp(-t / tau_syn3)
inline I_syn pA = (convolve(I_kernel1, spikes1) - convolve(I_kernel2, spikes2) + convolve(I_kernel3, spikes3)) * pA
V_m' = -(V_m - E_L) / tau_m + I_syn / C_m
Multiple input ports with vectors
The input ports can also be defined as vectors. For example,
neuron multi_synapse_vectors:
input:
AMPA_spikes <- excitatory spike
GABA_spikes <- inhibitory spike
NMDA_spikes <- spike
foo[2] <- spike
exc_spikes[3] <- excitatory spike
inh_spikes[3] <- inhibitory spike
equations:
kernel I_kernel_exc = exp(-1 / tau_syn_exc * t)
kernel I_kernel_inh = exp(-1 / tau_syn_inh * t)
inline I_syn_exc pA = convolve(I_kernel_exc, exc_spikes[1]) * pA
inline I_syn_inh pA = convolve(I_kernel_inh, inh_spikes[1]) * pA
In this example, the spiking input ports foo, exc_spikes, and inh_spikes are defined as vectors. The integer surrounded by [ and ] determines the size of the vector. The size of the input port must always be a positive-valued integer.
They could also be used in differential equations defined in the equations block as shown for exc_spikes[1] and inh_spikes[1] in the example above.
Output
emit_spike: calling this function in the update block results in firing a spike to all target neurons and devices time stamped with the current simulation time.
Implementing refractoriness
In order to model an absolute refractory state, in which the neuron cannot fire action potentials, different approaches can be used. In general, an extra parameter (say, refr_T) is introduced, that defines the duration of the refractory period. A new state variable (say, refr_t) can then act as a timer, counting the time of the refractory period that has already elapsed. The dynamics of refr_t could be specified in the update block, as follows:
update:
refr_t -= resolution()
The test for refractoriness can then be added in the onCondition block as follows:
# if not refractory and threshold is crossed...
onCondition(refr_t <= 0 ms and V_m > V_th):
V_m = E_L # Reset the membrane potential
refr_t = refr_T # Start the refractoriness timer
emit_spike()
The disadvantage of this method is that it requires a call to the resolution() function, which is only supported by fixed-timestep simulators. To write the model in a more generic way, the refractoriness timer can alternatively be expressed as an ODE:
equations:
refr_t' = -1 / s # a timer counting back down to zero
Typically, the membrane potential should remain clamped to the reset or leak potential during the refractory period. It depends on the intended behavior of the model whether the synaptic currents and conductances also continue to be integrated or whether they are reset, and whether incoming spikes during the refractory period are taken into account or ignored.
In order to hold the membrane potential at the reset voltage during refractoriness, it can be simply excluded from the integration call:
I_syn' = ...
V_m' = ...
refr_t' = -1 / s # Count down towards zero
update:
if refr_t > 0 ms:
# neuron is absolute refractory, do not evolve V_m
integrate_odes(I_syn, refr_t)
else:
# neuron not refractory
integrate_odes(I_syn, V_m)
Note that in some cases, the finite resolution by which real numbers are expressed (as floating point numbers) in computers, can cause unexpected behaviors. If the simulation resolution is not exactly representable as a float (say, Δt = 0.1 ms) then it could be the case that after 20 simulation steps, the timer has not reached zero, but a very small value very close to zero (say, 0.00000001 ms), causing the refractory period to end only in the next timestep. If this kind of behavior is undesired, the simulation resolution and refractory period can be chosen as powers of two (which can be represented exactly as floating points), or a small “epsilon” value can be included in the comparison in the model:
parameters:
float_epsilon ms = 1E-9 ms
onCondition(refr_t <= float_epsilon ...):
# ...