-
Notifications
You must be signed in to change notification settings - Fork 4
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
0 parents
commit ee34a1b
Showing
1 changed file
with
21 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# H-Mem: Harnessing synaptic plasticity with Hebbian Memory Networks | ||
This is the code used in the paper "[H-Mem: Harnessing synaptic plasticity with Hebbian Memory | ||
Networks](https://www.biorxiv.org/content/10.1101/2020.07.01.180372v1)" for training H-Mem on a single-shot | ||
image association task and on the bAbI question-answering tasks. | ||
|
||
## Setup | ||
You need [TensorFlow](https://www.tensorflow.org/) to run this code. We tested it on TensorFlow version 2.1.0. | ||
Additional dependencies are listed in [environment.yml](environment.yml). If you use | ||
[Conda](https://docs.conda.io/en/latest/), run | ||
|
||
```bash | ||
conda env create --file=environment.yml | ||
``` | ||
|
||
to install the required packages and their dependencies. | ||
|
||
## Usage | ||
TODO | ||
|
||
## References | ||
* Limbacher, T., Legenstein, R. (2020). H-Mem: Harnessing synaptic plasticity with Hebbian Memory Networks bioRxiv https://dx.doi.org/10.1101/2020.07.01.180372 |