Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
usedToBeTomas committed Jul 14, 2023
1 parent 584af92 commit 939aed6
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file modified examples/1. simple_image_classifier/test1.npz
Binary file not shown.
Binary file modified examples/2. mnist/mnist.npz
Binary file not shown.
2 changes: 1 addition & 1 deletion pod.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ def load(**options):
if options.get("one_hot") != None:
Q = []
for i in range(len(data)):
Q.append(decimal_to_array(data[i], int(options.get("one-hot"))))
Q.append(decimal_to_array(data[i], int(options.get("one_hot"))))
data = np.vstack(Q)
return data
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='pileoffeather',
version='0.3.0',
version='0.3.1',
license='MIT',
url = 'https://github.com/usedToBeTomas/pile-of-feather',
author='Daniele Tomaselli',
Expand Down

0 comments on commit 939aed6

Please sign in to comment.