MultiGaussian
Note
Click here to download the full example code
MultiGaussian#
MultiGaussian
surrogate gradient.

<matplotlib.legend.Legend object at 0x7feb242e8750>
import torch
import sinabs.activation as sina
import matplotlib.pyplot as plt
x = torch.linspace(-0.5, 3.5, 500)
plt.plot(x, sina.MultiGaussian()(v_mem=x, spike_threshold=1.0), label="MultiGaussian")
plt.xlabel("Neuron membrane potential")
plt.ylabel("Derivative")
plt.legend()
Total running time of the script: ( 0 minutes 0.139 seconds)