norse.torch.functional.lif_feed_forward_step

norse.torch.functional.lif_feed_forward_step#

norse.torch.functional.lif_feed_forward_step(input_spikes: Tensor, state: LIFFeedForwardState, p: LIFParameters, dt: float = 0.001) Tuple[Tensor, LIFFeedForwardState][source]#

Computes a single euler-integration step for a lif neuron-model. It takes as input the input current as generated by an arbitrary torch module or function. More specifically it implements one integration step of the following ODE

v˙=1/τmem(vleakv+i)i˙=1/τsyni

together with the jump condition

z=Θ(vvth)

and transition equations

v=(1z)v+zvreseti=i+iin

where iin is meant to be the result of applying an arbitrary pytorch module (such as a convolution) to input spikes.

Parameters:

input_tensor (torch.Tensor): the input spikes at the current time step state (LIFFeedForwardState): current state of the LIF neuron p (LIFParameters): parameters of a leaky integrate and fire neuron dt (float): Integration timestep to use