Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend neuron model to include a parameter to store a 'latest spike time’ #4

Open
ChiaraBartolozzi opened this issue Oct 9, 2018 · 2 comments
Assignees

Comments

@ChiaraBartolozzi
Copy link

No description provided.

@ChiaraBartolozzi
Copy link
Author

For the implementation of the STDP, we need to update the weight between the Parallel Fibre (PF from GrC) and the Purkinje Cell (PC) every time a presynaptic spike arrives from the error signal from the Climbing Fibres (CF).

Differently from the standard STDP rule, therefore, we need to use only presynaptic spikes to calculate and trigger the weight update.

The weight the needs to be changes is the one between the PF and PC cells. So it has to be calculated at occurrence of the PF pre-synaptic spike. BUT it has to be aligned with the CF spike (that triggers effectively the learning).

So for each PF spike we

  • implement additive potentiation with a constant
  • check saturation
  • find the previous CF spike and apply the kernel to the PF spikes that happened before the CF spike in a window of 255ms: starting from the oldest PF spike, we multiply the LTU value corresponding to the time difference between the CF and PF spike and decrease the current weight of that amount.
  • for doing the above, we need to store the PF spike train in a sliding window (in the SDRAM, in the presynaptic event history), we also store the CF spike train in the local memory (DTCM)

@ChiaraBartolozzi
Copy link
Author

TODO:
@ChiaraBartolozzi : check the logic for the MFVN plasticity rule
@oliverrhodes : implement the same windowing for the MFVN plasticity rule

@pabogdan pabogdan transferred this issue from SpiNNakerManchester/sPyNNaker8 Mar 8, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants