-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #695 from C-Earl/Multicompartment_Connection
Multicompartment connection
- Loading branch information
Showing
10 changed files
with
2,315 additions
and
15 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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). | ||
|
||
|
@@ -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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -703,7 +703,7 @@ def plot_voltages( | |
.numpy()[ | ||
time[0] : time[1], | ||
n_neurons[v[0]][0] : n_neurons[v[0]][1], | ||
] | ||
], | ||
) | ||
) | ||
|
||
|
Oops, something went wrong.