Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
petered committed Feb 29, 2016
1 parent 845fff7 commit 498c28e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
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.

0 comments on commit 498c28e

Please sign in to comment.