Skip to content

Commit

Permalink
Merge branch 'main' of github.com:kmheckel/spyx
Browse files Browse the repository at this point in the history
  • Loading branch information
kmheckel committed Apr 14, 2024
2 parents e196bed + 09007b2 commit 682b02c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
⚡🧠💻 Welcome to Spyx! 💻🧠⚡
============================
[![DOI](https://zenodo.org/badge/656877506.svg)](https://zenodo.org/badge/latestdoi/656877506) [![PyPI version](https://badge.fury.io/py/spyx.svg)](https://badge.fury.io/py/spyx)
[![arXiv](https://img.shields.io/badge/arXiv-2402.18994-b31b1b.svg)](https://arxiv.org/abs/2402.18994) [![DOI](https://zenodo.org/badge/656877506.svg)](https://zenodo.org/badge/latestdoi/656877506) [![PyPI version](https://badge.fury.io/py/spyx.svg)](https://badge.fury.io/py/spyx)

[![](https://dcbadge.vercel.app/api/server/TCYQFWsBwj)](https://discord.gg/TCYQFWsBwj)

Expand Down Expand Up @@ -34,6 +34,8 @@ Since Spyx is developed on top of the current JAX version, it does not work on G
Research and Projects Using Spyx:
=================================

Experiments/Benchmarks used in the Spyx Paper: [Benchmark Notebooks](https://github.com/kmheckel/spyx/tree/main/research/paper)

Master's Thesis: Neuroevolution of Spiking Neural Networks [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.10620442.svg)](https://doi.org/10.5281/zenodo.10620442)

*** Your projects and research could be here! ***
Expand All @@ -47,8 +49,18 @@ If you'd like to contribute, head on over to the issues page to find proposed en
Citation:
=========

For now, use the Bibtex entry below or click the badge above the title image to get other formats from Zenodo.
If you find Spyx useful in your work please cite it using the following Bibtex entries:

```
@misc{heckel2024spyx,
title={Spyx: A Library for Just-In-Time Compiled Optimization of Spiking Neural Networks},
author={Kade M. Heckel and Thomas Nowotny},
year={2024},
eprint={2402.18994},
archivePrefix={arXiv},
primaryClass={cs.NE}
}
```

```
@software{kade_heckel_2024_10635178,
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/neuroevolution/cartpole_evo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
" # seqs is [T, F].\n",
" core = hk.DeepRNN([\n",
" hk.Linear(64, with_bias=False),\n",
" snn.LIF(64, beta=0.8, activation=spyx.axn.Axon()),\n",
" snn.LIF(64, beta=0.8),\n",
" hk.Linear(2, with_bias=False),\n",
" snn.LI(2)\n",
" ])\n",
Expand Down

0 comments on commit 682b02c

Please sign in to comment.