hxtorch.spiking.functional.iaf
Integrate and fire neurons
Classes
|
Unterjubel hardware observables to allow correct gradient flow |
Functions
-
hxtorch.spiking.functional.iaf.
cuba_iaf_integration
(input: torch.Tensor, *, reset: torch.Tensor, threshold: torch.Tensor, tau_syn: torch.Tensor, tau_mem: torch.Tensor, method: torch.Tensor, alpha: torch.Tensor, hw_data: Optional[torch.Tensor] = None, dt: float = 1e-06) → Tuple[torch.Tensor, torch.Tensor] Leaky-integrate and fire neuron integration for realization of simple spiking neurons with exponential synapses. Integrates according to:
v^{t+1} = dt / au_{men} * (v_l - v^t + i^t) + v^t i^{t+1} = i^t * (1 - dt / au_{syn}) + x^t z^{t+1} = 1 if v^{t+1} > params.threshold v^{t+1} = v_reset if z^{t+1} == 1
Assumes i^0, v^0 = 0., params.reset :note: One dt synaptic delay between input and output
- Parameters
input – Input tensor holding ‘graded_spikes’ in shape (batch, time, neurons).
reset – The reset voltage as torch.Tensor.
threshold – The threshold voltage as torch.Tensor.
tau_syn – The synaptic time constant as torch.Tensor.
tau_mem – The membrane time constant as torch.Tensor.
method – The method used for the surrogate gradient, e.g., ‘superspike’.
alpha – The slope of the surrogate gradient in case of ‘superspike’.
hw_data – An optional tuple holding optional hardware observables in the order (spikes, membrane_cadc, membrane_madc).
dt – Integration step width.
- Returns
Returns tuple of tensors with membrane traces, spikes and synaptic current. Tensors are of shape (batch, time, neurons).
-
hxtorch.spiking.functional.iaf.
cuba_refractory_iaf_integration
(input: torch.Tensor, *, reset: torch.Tensor, threshold: torch.Tensor, tau_syn: torch.Tensor, tau_mem: torch.Tensor, refractory_time: torch.Tensor, method: torch.Tensor, alpha: torch.Tensor, hw_data: Optional[torch.Tensor] = None, dt: float = 1e-06) → Tuple[torch.Tensor, torch.Tensor] Integrate and fire neuron integration for realization of simple spiking neurons with exponential synapses and refractory period. Integrates according to:
v^{t+1} = dt / au_{men} * i^t + v^t i^{t+1} = i^t * (1 - dt / au_{syn}) + x^t z^{t+1} = 1 if v^{t+1} > params.v_th v^{t+1} = params.v_reset if z^{t+1} == 1 or ref^t > 0 ref^{t+1} -= 1 ref^{t+1} = params.tau_ref if z^{t+1} == 1
Assumes i^0, v^0 = 0., v_reset :note: One dt synaptic delay between input and output
- Parameters
input – SynapseHandle holding graded_spikes in shape (batch, time, neurons).
reset – The reset voltage as torch.Tensor.
threshold – The threshold voltage as torch.Tensor.
tau_syn – The synaptic time constant as torch.Tensor.
tau_mem – The membrane time constant as torch.Tensor.
refractory_time – The refractory time constant as torch.Tensor.
method – The method used for the surrogate gradient, e.g., ‘superspike’.
alpha – The slope of the surrogate gradient in case of ‘superspike’.
hw_data – An optional tuple holding optional hardware observables in the order (spikes, membrane_cadc, membrane_madc).
dt – Integration step width.
- Returns
Returns NeuronHandle holding tensors with membrane traces, spikes and synaptic current. Tensors are of shape (batch, time, neurons).
-
hxtorch.spiking.functional.iaf.
iaf_step
(z: torch.Tensor, v: torch.Tensor, i: torch.Tensor, input: torch.Tensor, spikes_hw: torch.Tensor, membrane_hw: torch.Tensor, *, reset: torch.Tensor, threshold: torch.Tensor, tau_syn: torch.Tensor, tau_mem: torch.Tensor, method: torch.Tensor, alpha: torch.Tensor, dt: float) → Tuple[torch.Tensor, …] Integrate the membrane of a neurons one time step further according to the integrate and fire dynamics.
- Parameters
z – The spike tensor at time step t.
v – The membrane tensor at time step t.
i – The current tensor at time step t.
input – The input tensor at time step t (graded spikes).
spikes_hw – The hardware spikes corresponding to the current time step. In case this is None, no HW spikes will be injected.
membrane_hw – The hardware CADC traces corresponding to the current time step. In case this is None, no HW CADC values will be injected.
reset – The reset voltage as torch.Tensor.
threshold – The threshold voltage as torch.Tensor.
tau_syn – The synaptic time constant as torch.Tensor.
tau_mem – The membrane time constant as torch.Tensor.
method – The method used for the surrogate gradient, e.g., ‘superspike’.
alpha – The slope of the surrogate gradient in case of ‘superspike’.
dt – Integration step width.
- Returns
Returns a tuple (z, v, i) holding the tensors of time step t + 1.
-
hxtorch.spiking.functional.iaf.
refractory_update
(z: torch.Tensor, v: torch.Tensor, ref_state: torch._VariableFunctionsClass.tensor, spikes_hw: torch.Tensor, membrane_hw: torch.Tensor, *, reset: torch.Tensor, refractory_time: torch.Tensor, dt: float) → Tuple[torch.Tensor, …] Update neuron membrane and spikes to account for refractory period. This implemention is widly adopted from: https://github.com/norse/norse/blob/main/norse/torch/functional/lif_refrac.py
- Parameters
z – The spike tensor at time step t.
v – The membrane tensor at time step t.
ref_state – The refractory state holding the number of time steps the neurons has to remain in the refractory period.
spikes_hw – The hardware spikes corresponding to the current time step. In case this is None, no HW spikes will be injected.
membrnae_hw – The hardware CADC traces corresponding to the current time step. In case this is None, no HW CADC values will be injected.
reset – The reset voltage as torch.Tensor.
refractory_time – The refractory time constant as torch.Tensor.
dt – Integration step width.
- Returns
Returns a tuple (z, v, ref_state) holding the tensors of time step t.
-
hxtorch.spiking.functional.iaf.
spiking_threshold
(input: torch.Tensor, method: str, alpha: float) → torch.Tensor Selection of the used threshold function. :param input: Input tensor to threshold function. :param method: The string indicator of the the threshold function.
Currently supported: ‘super_spike’.
- Parameters
alpha – Parameter controlling the slope of the surrogate derivative in case of ‘superspike’.
- Returns
Returns the tensor of the threshold function.