You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I just wanted to report an image where an entire person is shown with a shirt and trousers, so different from the other images.
It's image 36325 in the training set with class: shirt.
I've read #166 and already saw your answers there, and just thought might be interesting to know :)
from tensorflow.keras.datasets import fashion_mnist import matplotlib.pyplot as plt (x_train, y_train), _ = fashion_mnist.load_data() plt.imshow(x_train[36325], cmap='gray') plt.title(f'TF, label:{y_train[36325]}, idx: 36325') plt.show()
Cheers Pascal
The text was updated successfully, but these errors were encountered:
Hi,
I just wanted to report an image where an entire person is shown with a shirt and trousers, so different from the other images.
It's image 36325 in the training set with class: shirt.
I've read #166 and already saw your answers there, and just thought might be interesting to know :)
from tensorflow.keras.datasets import fashion_mnist import matplotlib.pyplot as plt (x_train, y_train), _ = fashion_mnist.load_data() plt.imshow(x_train[36325], cmap='gray') plt.title(f'TF, label:{y_train[36325]}, idx: 36325') plt.show()
Cheers Pascal
The text was updated successfully, but these errors were encountered: