PGI-15 Tutorial

Learning in RNNs and SNNs

02.11.2023 | Emre Neftci, Susanne Kunkel, Jamie Lohoff, and Willem Wybo

Spike-Timing Dependent Plasticity

Bi and Poo 1998

Jesper Sjostrom and Wulfram Gerstner (2010), Scholarpedia, 5(2):1362.

  • $W$: Learning Window
  • $t_i^n$: $n$th spike time of post-synaptic neuron $i$
  • $t_j^f$: $f$th spike time of pre-synaptic neuron $i$

STDP Visualized

STDP lacks credit assignment

  • STDP updates only depend on pre-synaptic and post-synaptic activity
  • No direct influence by task performance

The Concept of Locality

For computation to occur on a physical substrate, information much be spatially and temporally local.

Neftci et al. 2019

Considerations about STDP

  • Rate-based models are consistent with STDP
  • Spike-time dependence depends on synapse location wrt soma
  • The exponential fit of STDP is for computational convenience
  • Update in original model is relative
  • STDP is not derived from computational requirements

STDP is a measurement, not an accurate mechanistic model!

Discrete Euler Integration

$$ \begin{align*} U^{t+1} & = \beta U^t + (1-\beta) W S^t_{in} - S^t \tag{Membrane Potential}\\ S^t &= \Theta(U^t-1) \tag{Spike & Reset} \\ \beta & = \exp(\frac{t}{\tau_{mem}}) \tag{Time Constant}\\ \end{align*} $$

Limits of Leaky I&F: Towards More Complex Neurons

  • In many tasks, SNNs consisting of Leaky I\&F do not perfiorm better than ANNs, and are more expensive to implement
  • Just as with ANNs, we need to use more complex neuron models to improve performance (Vanilla RNN $\rightarrow$ LSTM)
    • Spiking LSTM, Adaptive Thresholds, Dendritic Compartments, etc.

    Bellec et al. 2018

    Vecoven, Ernst, Drion, 2021

Limits of Leaky I&F: Towards More Complex Neurons

  • In many tasks, SNNs consisting of Leaky I\&F do not perfiorm better than ANNs, and are more expensive to implement
  • Just as with ANNs, we need to use more complex neuron models to improve performance (Vanilla RNN $\rightarrow$ LSTM)
    • Synaptic delays, graded spikes

    Kretzberg et al. 2001

The End