Skip to content
Snippets Groups Projects

Fix image loading in mnist 5

Merged Samuel GAIST requested to merge fix_mnist into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -82,7 +82,7 @@ class View(BaseView):
elif output == 'image':
return {
'value': obj.image.reshape((28, 28))
'value': np.array(obj.image).reshape((28, 28))
}
Loading