Skip to content

Commit 4f28c39

Browse files
author
Dan Saunders
committed
Merge branch 'dan' of https://github.com/Hananel-Hazan/bindsnet into dan
2 parents b86db90 + c46f68a commit 4f28c39

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ We are interested in applying SNNs to ML and RL problems. We use STDP to modify
7878

7979
We have provided some simple starter scripts for doing unsupervised learning (learning a fully-connected or convolutional representation via STDP), supervised learning (clamping output neurons to desired spiking behavior depending on data labels), and reinforcement learning (converting observations from the Atari game Space Invaders to input to an SNN, and converting network activity back to actions in the game).
8080

81+
## References
82+
Hananel Hazan, Daniel J. Saunders, Hassaan Khan, Darpan T. Sanghavi, Hava T. Siegelmann, Robert Kozma, [BindsNET: A machine learning-oriented spiking neural networks library in Python.](https://arxiv.org/abs/1806.01423) 2018, Arxiv.
83+
8184
## Contributors
8285

8386
- Daniel Saunders ([email](mailto:djsaunde@cs.umass.edu))

bindsnet/network/topology.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _reset(self):
8989
Contains resetting logic for the connection.
9090
'''
9191
pass
92-
92+
9393

9494
class Connection(AbstractConnection):
9595
'''
@@ -324,4 +324,4 @@ def _reset(self):
324324
'''
325325
Contains resetting logic for the connection.
326326
'''
327-
super()._reset()
327+
super()._reset()

0 commit comments

Comments
 (0)