-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
4 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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
# DeepSpike | ||
|
||
DeepSpike is a Java package to help you build deep spiking neural networks. Currently, it includes | ||
a deep Multi-Layer perceptron. | ||
DeepSpike is a Java package to help you build deep spiking neural networks and spiking deep neural networks. Currently, it includes a Spiking Multi-Layer Perceptron. | ||
|
||
In our experiments the code was called from Python, so currently all tests are in the python code. | ||
See https://github.com/petered/spiking-mlp | ||
## Getting Started | ||
|
||
In our experiments the code was called from Python, so currently all tests are in the Python code, which is in our [Spiking-MLP Repo](https://github.com/petered/spiking-mlp). If you want to try DeepSpike, go to that repo and follow the installation instructions. | ||
|
||
## About DeepSpike | ||
|
||
DeepSpike is a library for building Event-Based neural networks. "Event-Based" means that the units communicate by sending events to one another, and downstream units only update their state upon receiving events. Contrast this to regular deep networks, where we think of each unit as a function that takes an input and produces an output. In an event-based architecture, if, in processing an input event, a unit decides that it should produce an event, it announces "Hey, I am firing an event", and an event-handler decides what to do with it. |