Resetting Neurons and Synapses #651
-
I am using the PyGeNN simulator (version 5) to implement a spiking neural network. My network includes four neuronal populations (
The
Network ConfigurationNeuronal Populations
Synaptic Populations:
Custom Weight Update Rule (anti_hebbian)
Thank you for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Thanks for your detailed post. Basically, spike times are only calculated when a weight update model requests them so, in your case, the |
Beta Was this translation helpful? Give feedback.
Thanks for your detailed post. Basically, spike times are only calculated when a weight update model requests them so, in your case, the
anti_hebbian
model on thekc_mbon
synapse population is 'requesting' presynaptic spike times from thekc
neuron population and postsynaptic spike times from thembon
neuron population. This is whyreset_spike_times(kc)
andreset_spike_times(mbon)
are the only calls which work without error.