Note
Go to the end to download the full example code
Leaky Integrate and Fire (LIF)#
The LIF
layer. This neuron integrates the input and decays its state at every time step.
import torch
from utils import plot_evolution
import sinabs.layers as sl
const_current = torch.ones((1, 100, 1)) * 0.03
single_current = torch.zeros((1, 100, 1))
single_current[:, 0] = 0.1
lif_neuron = sl.LIF(tau_mem=40.0, norm_input=False, record_states=True)
plot_evolution(lif_neuron, const_current)
# By default, no synaptic dynamics are used. We can enable that by setting tau_syn. Note that instead of a constant current, we now provide input only at the first time step.
lif_neuron = sl.LIF(tau_mem=40.0, tau_syn=30.0, norm_input=False, record_states=True)
plot_evolution(lif_neuron, single_current)
Total running time of the script: (0 minutes 0.294 seconds)