Load the Fashion MNIST dataset in Python with one line of code. Plug it in TensorFlow and PyTorch with Activeloop Hub. Visualize the Fashion MNIST dataset.
The Fashion MNIST (Fashion Modified National Institute of Standards and Technology database) datasetis comprised of 60,000 samples of the training set and 10,000 samples of the test set. Each sample is a 28x28 grayscale picture with a label from one of ten classes. Fashion-MNIST is intended to be a direct drop-in replacement for the original MNIST dataset for evaluating machine learning algorithms. The image size and structure of the training and testing splits are the same.
Download Fashion MNIST Dataset in Python
Instead of downloading the Fashion-MNIST dataset in Python, you can effortlessly load it in Python via our open-source package Hub with just one line of code.
Load Fashion MNIST Dataset Training Subset in Python
title={Fashion-mnist: a novel image dataset for benchmarking machine learning algorithms},
3
author={Xiao, Han and Rasul, Kashif and Vollgraf, Roland},
4
journal={arXiv preprint arXiv:1708.07747},
5
year={2017}
6
}
Copied!
Fashion MNIST Dataset FAQs
What are the classes of images in the Fashion MNIST dataset?
Similar to MNIST, Fashion-MNIST contains 10 classes of images.
T-shirt/top,
Trouser,
Pullover,
Dress,
Coat,
Sandal,
Shirt,
Sneaker,
Bag,
Ankle boot.
What are the main differences between MNIST and Fashion MNIST dataset?
Fashion MNIST is meant to substitute the MNIST dataset. Both datasets have the same amount of pictures in the training set (60 000 pictures) as well as the testing set (10 000 pictures).
Both Fashion MNIST and MNIST datasets have 10 classes: the ten digits (0 to 9) for MNIST, whilst Fashion MNIST is ten kinds of clothing items.
Both datasets consist of 28x28 pixel greyscale pictures, with each pixel being a number between 0 and 255 representing the greyscale intensity.
How many images are in the Fashion MNIST dataset?
The Fashion MNIST dataset has 70 000 images, consisting of 60 000 training set and 10 000 testing set images.