We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Custom update model would look something like this in standard PyGeNN (5.0.0) syntax:
gradient_descent_zero_gradient_model = create_custom_update_model( "gradient_descent_zero_gradient", params=["eta"], var_refs=[("gradient", "scalar"), ("variable", "scalar")], update_code=""" // Descend! variable -= eta * gradient; """)
Will need to:
Optimiser
Adam
__all__
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Custom update model would look something like this in standard PyGeNN (5.0.0) syntax:
Will need to:
Optimiser
(https://github.com/genn-team/ml_genn/blob/master/ml_genn/ml_genn/optimisers/optimiser.py). SeeAdam
implementation for reference (https://github.com/genn-team/ml_genn/blob/master/ml_genn/ml_genn/optimisers/adam.py)__all__
in https://github.com/genn-team/ml_genn/blob/master/ml_genn/ml_genn/optimisers/__init__.pyThe text was updated successfully, but these errors were encountered: