Note
Go to the end to download the full example code
Integrate and Fire (IAF)#
IAF
layer.
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
iaf_neuron = sl.IAF(record_states=True)
plot_evolution(iaf_neuron, const_current)
iaf_neuron = sl.IAF(tau_syn=15.0, record_states=True)
plot_evolution(iaf_neuron, single_current)
Total running time of the script: ( 0 minutes 0.300 seconds)