You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operating System: Probably Linux, sie it is Google Colab
Description
While working through the tutorial, I tried to run the cell where the snn.Synatic LIF Neuron is used. The cell itself works, but the plot shows, that the Neuron isn't doing, what it should do. The reset_mechanism needs to be set to "zero" and the threshold needs to be lowered, that the LIF Neuron at least uses any reset. With the default, the reset isn't working at all and the neuron just fires every timestep. Also the current isn't decaying over time.
In the following picture is visible what I mean.
lif1 = snn.Synaptic(alpha=alpha, beta=beta)
Description
While working through the tutorial, I tried to run the cell where the snn.Synatic LIF Neuron is used. The cell itself works, but the plot shows, that the Neuron isn't doing, what it should do. The reset_mechanism needs to be set to "zero" and the threshold needs to be lowered, that the LIF Neuron at least uses any reset. With the default, the reset isn't working at all and the neuron just fires every timestep. Also the current isn't decaying over time.
In the following picture is visible what I mean.
lif1 = snn.Synaptic(alpha=alpha, beta=beta)
lif1 = snn.Synaptic(alpha=alpha, beta=beta, reset_mechanism="zero")
The text was updated successfully, but these errors were encountered: