Skip to content

Commit

Permalink
restructured data and created loaders
Browse files Browse the repository at this point in the history
  • Loading branch information
kmheckel committed Feb 8, 2024
1 parent c43f1f0 commit 94c4c11
Show file tree
Hide file tree
Showing 8 changed files with 496 additions and 429 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ Spyx achieves extremely high performance by maintaining the entire dataset in th
Since Spyx is developed on top of the current JAX version, it does not work on Google Colab's TPUs which use an older version. Cloud TPU support will be tested in the near future.


Research and Projects Using Spyx:
=================================

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! ***


Contributing:
=============

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
project = 'Spyx'
copyright = '2023, Kade Heckel'
author = 'Kade Heckel'
release = 'v0.1.15'
release = 'v0.1.16'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@
)

extras = {
'data' : [
'loaders' : [
'tonic',
'torch',
'torchvision',
'sklearn'
]
Expand All @@ -33,7 +32,7 @@
# This call to setup() does all the work
setup(
name="spyx",
version="0.1.15",
version="0.1.16",
description="Spyx: SNNs in JAX",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
3 changes: 2 additions & 1 deletion spyx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@
from . import axn
from . import fn
from . import data
from . import experimental
from . import experimental
from . import loaders
2 changes: 1 addition & 1 deletion spyx/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.15"
__version__ = "0.1.16"
Loading

0 comments on commit 94c4c11

Please sign in to comment.