Poisson input into single neurons

In models, we often assume that presynaptic action potentials are arriving randomly at a certain rate. Synapses on the dendrite of the postsynaptic neuron are then activated in a random fashion. The stochastic process that reflects such random arrival of point-like events is called a Poisson process. Its only parameter is the rate at which events occur. In view of the linearity of temporal and spatial dendritic integration, all synapses that have the same amplitude and sign can be treated as a single compound source of input. You can now employ the Poisson generator functionality of NEST to explore the response behavior of neurons:


  1. Devise a method to display simulated Poisson spike trains, which will later be used as a source of input to our model neuron. Verify the randomness of the Poisson generator by repeating the same simulation multiple times.

    A raster display with lines corresponding to “trials” rather than “neurons” represents an adequate tool to illustrate this.


  1. Consider an LIF neuron that receives Poisson input of a constant rate using a synapse of a specific amplitude. Analyze how the input rate influences the membrane potential and the spiking response of the neuron. The parameters of interest are the mean and the variance of the membrane potential, as well as the output firing rate and the irregularity of the output spike train.

    What happens if you change the strength of the synapse?


  1. Now we consider the more realistic situation that a neuron receives input from two different and independent presynaptic populations, one consisting of excitatory, the other one consisting of inhibitory neurons.

    Note

    The presynaptic population of a cortical nerve cell can be quite large, comprising up to 10,000 neurons, say.

    What matters for the postsynaptic neuron is the accumulated spike rate for each type of input, so these input rates will also be large. The model has two parameters, the rate \(\lambda_{E}\) of the excitatory Poisson process and the rate \(\lambda_{I}\) of the inhibitory Poisson process.

    Begin your simulation experiments by fixing \(\lambda_{E} = \lambda_{I}\) assuming exactly the same firing rate for excitatory and inhibitory inputs. Start with small rates (subthreshold) and jointly increase them step by step until output spikes are generated (superthreshold). Describe your observations for weak and for strong input, both on the level of the membrane potential and on the level of output spike trains.


  1. Considering synaptic bombardment from a large pool of presynaptic neurons, the mathematical model of shotnoise is appropriate to describe membrane potential fluctuations. Generally, the two relevant parameters \(\lambda_{E}\) and \(\lambda_{I}\) are fixed independently, and combinations with \(\lambda_{E} \neq \lambda_{I}\) may arise.

    Previously, we have considered Gaussian White Noise input, which was described by the two parameters mean \(\mu\) and variance \(\sigma^{2}\). No specific assumptions were then made about the biophysical origin of membrane potential fluctuations.

    Shotnoise can also be described in terms of the mean \(\mu\) and variance \(\sigma^{2}\) of the membrane potential. As long as the input remains subthreshold and no output spikes are generated, it holds that \(\mu \sim \lambda_{E} - \lambda_{I}\) and \(\sigma^{2} \sim \lambda_{E} + \lambda_{I}\). (The symbol \(\sim\) means “is proportional to”.)

    Perform some experiments that illustrate this relation.


  1. If input rates are large enough, output spikes are generated. There is a loose correspondence between the mean membrane potential and the mean output rate, as well as between the membrane potential fluctuations (variance) and the variability of output spike trains (irregularity).

    One speaks of the “mean-driven regime” and the “fluctuation-driven regime”, depending on whether spikes are predominantly generated by a depolarizing drive (mean), or by membrane potential fluctuations (variance), respectively.

    Explore the meaning of these two terms, and illustrate the two regimes by suitable simulations. Develop criteria that allow you to classify neuronal activity recorded in experiments accordingly.


NEST Desktop does not only offer direct current (DC) stimulators, but also noise current stimulators. In principle, they are used in the same way as a DC stimulator. “Poisson input” is just one specific form of “noise input”. Technically, this is correct, and this immediately explains how to use it in a simulation: Just replace the direct current stimulator by a Poisson stimulator.

Biologically, however, we are now talking about an input that works with spikes that activate synapses, and it does not just inject electrical charge into the cell. Therefore, changing the properties of synapses on the target neuron also changes the properties of the “noise” input. This may be confusing, but the concept of “shotnoise” exactly reflects this. You should also keep in mind that the spikes generated by a Poisson source typically originate from a large set of presynaptic neurons. In the neocortex, this set could comprise hundreds or thousands of presynaptic neurons, and the rate parameter can assume very large values (rate of individual neurons \(×\) number of presynaptic neurons).

Noise and fluctuations in our simulations are based on so-called “pseudo-random” numbers. They look like “true” random numbers for all practical purposes, but they are generated by a perfectly deterministic algorithm, one after the other. Using the same starting point (seed), you get exactly the same stream of random numbers. However, if you want a different stream of random numbers each time you perform the simulation, select Randomize seed in the “Simulation” controller.