Skip to content
Snippets Groups Projects
Commit 359de79f authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[advanced][databases][mnist] Fix image loading

parent 700288e6
No related branches found
No related tags found
1 merge request!30Fix image loading in mnist 5
...@@ -82,7 +82,7 @@ class View(BaseView): ...@@ -82,7 +82,7 @@ class View(BaseView):
elif output == 'image': elif output == 'image':
return { 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