Skip to content
Snippets Groups Projects
Commit 1a885cf5 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Merge branch 'fix_mnist' into 'master'

Fix image loading in mnist 5

See merge request !30
parents 700288e6 359de79f
No related branches found
No related tags found
1 merge request!30Fix image loading in mnist 5
......@@ -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))
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment