Select Language

AI社区

公开数据集

Fashion-MNIST

Fashion-MNIST

29.45M
523 浏览
0 喜欢
6 次下载
0 条讨论
MNIST,Fashion Classification

Fashion-MNIST is a dataset of Zalando's article images—consisting of a training set of60,000 examples and a test se......

数据结构 ? 29.45M

    Data Structure ?

    * 以上分析是由系统提取分析形成的结果,具体实际数据为准。

    README.md

    Fashion-MNIST is a dataset of Zalando's article images—consisting of a training set of 60,000 examples and a test set of 10,000 examples. Each example is a 28x28 grayscale image, associated with a label from 10 classes. We intend Fashion-MNIST to serve as a direct drop-in replacement for the original MNIST dataset for benchmarking machine learning algorithms. It shares the same image size and structure of training and testing splits.

    Instruction

    Get the Data

    • Labels

    Each training and test example is assigned to one of the following labels:

    LabelDescription
    0T-shirt/top
    1Trouser
    2Pullover
    3Dress
    4Coat
    5Sandal
    6Shirt
    7Sneaker
    8Bag
    9Ankle boot

    Usage

    • Loading data with Python (requires NumPy)

    Use utils/mnist_reader in this repo:

    import mnist_reader
    X_train, y_train = mnist_reader.load_mnist('data/fashion', kind='train')
    X_test, y_test = mnist_reader.load_mnist('data/fashion', kind='t10k')
    • Loading data with Tensorflow

    Make sure you have downloaded the dataand placed it in data/fashion. Otherwise, Tensorflow will download and use the original MNIST.

    from tensorflow.examples.tutorials.mnist import input_data
    data = input_data.read_data_sets('data/fashion')
    
    data.train.next_batch(BATCH_SIZE)

    Note, Tensorflow supports passing in a source url to the read_data_sets. You may use:

    data = input_data.read_data_sets('data/fashion', source_url='http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/')

    Also, an official Tensorflow tutorial of using tf.keras, a high-level API to train Fashion-MNISTcan be found here.

    • Loading data with other machine learning libraries

    To date, the following libraries have included Fashion-MNIST as a built-in dataset. Therefore, you don't need to download Fashion-MNIST by yourself. Just follow their API and you are ready to go.

    1. Apache MXNet Gluon

    2. deeplearn.js

    3. Kaggle

    4. Pytorch

    5. Keras

    6. Edward

    7. Tensorflow

    8. Torch

    9. JuliaML

    10. Chainer

    You are welcome to make pull requests to other open-source machine learning packages, improving their support to Fashion-MNIST dataset.

    • Loading data with other languages

    As one of the Machine Learning community's most popular datasets, MNIST has inspired people to implement loaders in many different languages. You can use these loaders with the Fashion-MNIST dataset as well. (Note: may require decompressing first.) To date, we haven't yet tested all of these loaders with Fashion-MNIST.

    1. C

    2. C++

    3. Java

    4. Pythonand this and this

    5. Scala

    6. Go

    7. C#

    8. NodeJS and this

    9. Swift

    10. R and this

    11. Matlab

    12. Ruby

    Citation

    Please use the following citation when referencing the dataset:

    @online{xiao2017/online,
      author       = {Han Xiao and Kashif Rasul and Roland Vollgraf},
      title        = {Fashion-MNIST: a Novel Image Dataset for Benchmarking Machine Learning Algorithms},
      date         = {2017-08-28},
      year         = {2017},
      eprintclass  = {cs.LG},
      eprinttype   = {arXiv},
      eprint       = {cs.LG/1708.07747},
    }


    ×

    帕依提提提温馨提示

    该数据集正在整理中,为您准备了其他渠道,请您使用

    注:部分数据正在处理中,未能直接提供下载,还请大家理解和支持。
    暂无相关内容。
    暂无相关内容。
    • 分享你的想法
    去分享你的想法~~

    全部内容

      欢迎交流分享
      开始分享您的观点和意见,和大家一起交流分享.
    所需积分:10 去赚积分?
    • 523浏览
    • 6下载
    • 0点赞
    • 收藏
    • 分享