Image of full body in trainingset

Author: buehlpaCreated Aug 3, 2023Updated Nov 14, 2023

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() image

Cheers Pascal

Source: zalandoresearch/fashion-mnist