Skip to content
Advertisement

Confusion when displaying an image from matplotlib.pyplot to tensorflow

I have this error: TypeError: Invalid shape (28, 28, 1) for image data

Here is my code:

JavaScript

I know that the pytorch does processing via this way: C x H x W, and that matplotlib does it this way: H x W x C, yet when I change it to matplotlib’s way, it gives me an error here. Am I missing something? Why does this happen?

Advertisement

Answer

plt.imshow() expects 2D or 3D arrays. If the array has 3 dimensions then the last dimension should be 3 or 4. In your case the array has shape (28,28,1) and this is considered as a 3D array.

So the last dimension should be squeezed out in order to match imshow()‘s requirements.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement