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 pull request includes several changes to the
brainstate
project, focusing on code simplification, functionality improvements, and documentation updates. The most important changes include removing redundant methods, updating import statements, and adding a new example script with licensing information.Code simplification:
brainstate/optim/_sgd_optimizer.py
: Removed redundantextra_repr
methods and simplified superclass initialization by usingsuper()
calls without specifying the class name. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13]Functionality improvements:
brainstate/environ.py
: Updated theregister_default_behavior
function to remove unused parameters and imports. [1] [2]brainstate/nn/_collective_ops.py
: Improved thereset_all_states
function by filtering nodes with theModule
class.brainstate/nn/_interaction/_connections.py
: Replacedjnp.dot
withu.math.dot
for matrix multiplication to maintain consistency.Documentation updates:
docs/index.rst
: Updated documentation links from.rst
to.html
to ensure proper linking in the generated documentation. [1] [2] [3]New example script:
examples/200_surrogate_grad_lif.py
: Added a new example script for reproducing results from thespytorch
tutorial, including licensing information and detailed implementation for a spiking neural network.