Skip to content

Commit

Permalink
0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kmheckel committed Aug 21, 2023
1 parent c904e9d commit 2642cdf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# This call to setup() does all the work
setup(
name="spyx",
version="0.1.3",
version="0.1.4",
description="Spyx: SNNs in JAX",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion spyx/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.3"
__version__ = "0.1.4"
1 change: 0 additions & 1 deletion spyx/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ class MNIST_loader(): # change this so that it just returns either rate or tempo
# Change this to allow a config dictionary of
def __init__(self, time_steps=64, max_rate = 0.75, batch_size=32, val_size=0.3, subsample_data=1, key=jax.random.PRNGKey(0), download_dir='./MNIST'):

self.key = jax.random.PRNGKey(key)
self.sample_T = time_steps
self.max_rate = max_rate
self.val_size = val_size
Expand Down

0 comments on commit 2642cdf

Please sign in to comment.