Here we keep track of typos and errors that have been reported to us by the attentive readers of our article:
Halvagal, Manu Srinath, and Friedemann Zenke. 2023. ‘The Combination of Hebbian and Predictive Plasticity Learns Invariant Object Representations in Deep Sensory Networks’. Nature Neuroscience, October, 1–10. https://doi.org/10.1038/s41593-023-01460-y.
Thanks for reporting these problems. Our sincerest apologies that they made it into the final manuscript.
Thanks to Github user yilun-wu, who made us aware of a few small discrepancies between our simulation code and its description in the methods (Issues #2, #3, #4, and #5). .
Implementation of transmitter triggered plasticity (Issue #2)
First, there is a small mismatch between our spiking learning rule simulation and the rule reported in the Methods Eq. (18).
The learning rule we simulated was the following and that's what Eq. (18) should have read:
Importantly, the plasticity rule we simulated corresponds to an alternative implementation of transmitter-triggered plasticity, which does not affect the results, which remain qualitatively unchanged.
This qualitative resemblance can be seen in the following animated GIF comparing Figure 5 as published and three versions in which we patched the code and simulated Eq. (18) as reported in the methods for varying values of
Implementation of double exponential filtering for synaptic traces (Issue #3)
There is another mismatch between code as simulated and the methods which affects the effective learning rate of the spiking rule.
Specifically, the double exponential filtering with
in contrast to what we stated in the methods, which was
The rhs convolution with
Erroneous $\sigma^2$ trace normalization (Issue #4)
Due to a missing multiplication with the simulation time step (1e-4s), the
We verified that our simulation results are robust to this reparametrization. Below you see the plots for a patched simulation (commit 94daa6dac0d
) with
Implementation of relative refractory period (Issue #5)
In the implementation of the absolute and relative refractory period of our spiking neuron model, the moving threshold is set to 50mV after every spike before being exponentially decayed down to the resting threshold value of -50mV instead of jumping by 100mV as stated in the paper (cf. Eq. (16)). Thus threshold effects do not accumulate, but are reset with every spike. However, this difference only has a minor effect at very high firing rates to the model and thus unlikely to affect the results.
There is a sign error in Eq. (24) in the article. We simulated
and not
as stated in the article.