Fashion_mnist

Fashion-MNIST ज़ालैंडो की लेख छवियों का एक डेटासेट है जिसमें 60,000 उदाहरणों का एक प्रशिक्षण सेट और 10,000 उदाहरणों का एक परीक्षण सेट शामिल है। प्रत्येक उदाहरण एक 28x28 ग्रेस्केल छवि है, जो 10 वर्गों के एक लेबल से संबद्ध है।

विभाजित करना उदाहरण
'test' 10,000
'train' 60,000
  • फ़ीचर संरचना :
FeaturesDict({
    'image': Image(shape=(28, 28, 1), dtype=uint8),
    'label': ClassLabel(shape=(), dtype=int64, num_classes=10),
})
  • फ़ीचर दस्तावेज़ीकरण :
विशेषता कक्षा आकार डीटाइप विवरण
विशेषताएं डिक्ट
छवि छवि (28, 28, 1) uint8
लेबल क्लासलेबल int64

VISUALIZATION

  • उद्धरण :
@article{DBLP:journals/corr/abs-1708-07747,
  author    = {Han Xiao and
               Kashif Rasul and
               Roland Vollgraf},
  title     = {Fashion-MNIST: a Novel Image Dataset for Benchmarking Machine Learning
               Algorithms},
  journal   = {CoRR},
  volume    = {abs/1708.07747},
  year      = {2017},
  url       = {http://arxiv.org/abs/1708.07747},
  archivePrefix = {arXiv},
  eprint    = {1708.07747},
  timestamp = {Mon, 13 Aug 2018 16:47:27 +0200},
  biburl    = {https://dblp.org/rec/bib/journals/corr/abs-1708-07747},
  bibsource = {dblp computer science bibliography, https://dblp.org}
}