-
Notifications
You must be signed in to change notification settings - Fork 370
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
Enhance e-prop plasticity with biologically inspired features #3207
Open
JesusEV
wants to merge
442
commits into
nest:master
Choose a base branch
from
JesusEV:eprop_bio_feature
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
* make clear that no validation in first iteration
Co-authored-by: JesusEV <[email protected]>
Refactor nmnist tutorial
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
akorgor
force-pushed
the
eprop_bio_feature
branch
from
September 28, 2024 08:09
154d9fd
to
fdd2533
Compare
* remove `regular_spike_arrival` flag and `P_z_in` since = 1 * do spike-threshold crossing reset at the beginning of the time step
… neuron Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Co-authored-by: JesusEV <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
I: User Interface
Users may need to change their code due to changes in function calls
S: Normal
Handle this with default priority
T: Enhancement
New functionality, model or documentation
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR extends the previous efforts (PR #2867 "Implement e-prop plasticity") in porting the eligibility propagation (e-prop) plasticity mechanism by Bellec et al. (2020) from TensorFlow to NEST by introducing several novel, bio-inspired enhancements to e-prop.
Changes
_bsshslm_2020
, aligning with NEST's naming convention that reflects the first letters of the authors' last names and the publication year.eprop_iaf
eprop_iaf_psc_delta
eprop_iaf_adapt
eprop_readout
eprop_synapse
eprop_learning_signal_connection
eprop_archiving_node
with added support for new models.test_eprop_plasticity.py
eprop_supervised_regression_sine-waves.py
eprop_supervised_classification_neuromorphic_mnist.py
eprop_supervised_classification_evidence-accumulation.py
A manuscript by Korcsak-Gorzo, Stapmanns, and Espinoza Valverde et al. detailing these enhancements is in preparation.
References
Bellec G, Scherr F, Subramoney F, Hajek E, Salaj D, Legenstein R, Maass W (2020). A solution to the learning dilemma for recurrent networks of spiking neurons. Nature Communications, 11:3625. DOI
Korcsak-Gorzo A, Stapmanns J, Espinoza Valverde JA, Dahmen D, van Albada SJ, Plesser HE, Bolten M, Diesmann M. Event-based implementation of eligibility propagation. (in preparation)
Co-authored-by: Agnes Korcsak-Gorzo [email protected]