mnist fashion dataset

Solutions on MaxInterview for mnist fashion dataset by the best coders in the world

showing results for - "mnist fashion dataset"
Maina
17 Jul 2020
1import tensorflow as tf
2from tensorflow.keras.datasets import fashion_mnist
3
4link - https://github.com/zalandoresearch/fashion-mnist
5#The data is already been sorted into traning and testing for us
6
7(train_data, train_labels), (test_data, test_labels) = fashion_mnist.load_data()
8
9#Create a small list so we can read the label as well
10class_names = ['T-shirt/top', 'Trouser', 'Pullover', 'Dress', 'Coat', 'Sandle', 'Shirt', 'Sneaker', 'Bag', 'Ankle boot']
11