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

update #699

Merged
merged 36 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
ea55dda
Update reservoir.py
Jul 7, 2021
05b54f9
Merge branch 'BindsNET:master' into master
C-Earl Jul 14, 2021
c02f32e
Merge branch 'BindsNET:master' into master
C-Earl Aug 5, 2021
c92cc92
Create topology (new).py
C-Earl Aug 5, 2021
a8c4d64
Merge pull request #691 from BindsNET/hananel
Hananel-Hazan Aug 16, 2024
9e9f744
changes to plotting.py
C-Earl Sep 3, 2024
6a49ceb
compatability change, torch._six not supported (https://github.com/NV…
C-Earl Sep 3, 2024
7f0cf10
compatability change, torch._six not supported (https://github.com/NV…
C-Earl Sep 3, 2024
4a7d680
compatability change, package name change
C-Earl Sep 3, 2024
c81eef4
Add new connection classes
C-Earl Sep 3, 2024
8a1a1d0
reset state vars for Input nodes
C-Earl Sep 3, 2024
4b577e9
Add topology_features.py
C-Earl Sep 3, 2024
9d1139a
Update monitors.py
C-Earl Sep 3, 2024
6ad2ce2
Revert changes to Input
C-Earl Sep 3, 2024
6368202
Add new learning file for multicompartment connections
C-Earl Sep 3, 2024
fe99de3
Added MCC reservoir
C-Earl Sep 3, 2024
6226e59
Removed old TODO's
C-Earl Sep 3, 2024
88cf538
Updated requirements.txt and setup.py dependency versions
C-Earl Sep 3, 2024
d34d9d1
Merge pull request #1 from BindsNET/master
C-Earl Sep 4, 2024
c14ea09
Merge branch 'master' into Multicompartment_Connection
C-Earl Sep 4, 2024
8e1fa07
Grid Cell model files
C-Earl Sep 8, 2024
e06080f
Split inhib/exc populations
C-Earl Sep 9, 2024
59c732b
Working classification for grid cell memories
C-Earl Sep 9, 2024
ce07cdd
Working DQN
C-Earl Sep 10, 2024
701a18e
Environment animation
C-Earl Sep 11, 2024
091153c
Merge pull request #692 from BindsNET/hananel
Hananel-Hazan Sep 13, 2024
5b6f3d2
Final version of RL model
C-Earl Sep 15, 2024
4d45f3f
Uncomment pipeline
C-Earl Sep 17, 2024
4f0673f
Removed unnecessary files
C-Earl Sep 22, 2024
52be134
Update guides
C-Earl Sep 22, 2024
5592db3
Merge pull request #693 from BindsNET/hananel
Hananel-Hazan Sep 27, 2024
7b586ac
black reformating
Hananel-Hazan Oct 15, 2024
af26b5e
update contributors
Hananel-Hazan Oct 15, 2024
28a9a82
Merge pull request #695 from C-Earl/Multicompartment_Connection
Hananel-Hazan Oct 18, 2024
1b97861
bump version
Hananel-Hazan Oct 18, 2024
7c2e572
Merge pull request #698 from BindsNET/hananel
Hananel-Hazan Dec 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 18 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ A Python package used for simulating spiking neural networks (SNNs) on CPUs or G

BindsNET is a spiking neural network simulation library geared towards the development of biologically inspired algorithms for machine learning.

This package is used as part of ongoing research on applying SNNs to machine learning (ML) and reinforcement learning (RL) problems in the [Biologically Inspired Neural & Dynamical Systems (BINDS) lab](http://binds.cs.umass.edu/).
This package is used as part of ongoing research on applying SNNs, machine learning (ML) and reinforcement learning (RL) problems in the [Biologically Inspired Neural & Dynamical Systems (BINDS) lab](http://binds.cs.umass.edu/) and the Allen Discovery Center at Tufts University.


Check out the [BindsNET examples](https://github.com/BindsNET/bindsnet/tree/master/examples) for a collection of experiments, functions for the analysis of results, plots of experiment outcomes, and more. Documentation for the package can be found [here](https://bindsnet-docs.readthedocs.io).

Expand Down Expand Up @@ -129,11 +130,22 @@ If you use BindsNET in your research, please cite the following [article](https:

## Contributors

- Daniel Saunders ([email](mailto:[email protected]))
- Hananel Hazan ([email](mailto:[email protected]))
- Darpan Sanghavi ([email](mailto:[email protected]))
- Hassaan Khan ([email](mailto:[email protected]))
- Devdhar Patel ([email](mailto:[email protected]))
- Hava Siegelmann - Director of BINDS lab at UMass
- Robert Kozma - Co-Director of BINDS lab (2018-2019)
- Hananel Hazan ([email](mailto:[email protected])) - Spearheaded BindsNET and its main maintainer.
- Daniel Saunders ([email](mailto:[email protected])) - MSc student, BindsNET core functions coder (2018-2019).
- Darpan Sanghavi ([email](mailto:[email protected])) - MSc student BINDS Lab (2018)
- Hassaan Khan ([email](mailto:[email protected])) - MSc student BINDS Lab (2018)
- Devdhar Patel ([email](mailto:[email protected])) - MSc student BINDS Lab (2018)
- Simon Caby [github](https://github.com/SimonInParis)
- Christopher Earl ([email](mailto:[email protected])) - MSc student (2021 - present)


<a href="https://github.com/Bindsnet/bindsnet/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Bindsnet/bindsnet" />
</a>

Made with [contrib.rocks](https://contrib.rocks).

## License
GNU Affero General Public License v3.0
2 changes: 1 addition & 1 deletion bindsnet/analysis/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ def plot_voltages(
.numpy()[
time[0] : time[1],
n_neurons[v[0]][0] : n_neurons[v[0]][1],
]
],
)
)

Expand Down
Loading
Loading