{"id":18322178,"url":"https://github.com/aiaaee/fashionmnist","last_synced_at":"2026-04-29T14:32:24.906Z","repository":{"id":251462812,"uuid":"836068808","full_name":"aiaaee/FashionMNIST","owner":"aiaaee","description":"a dataset of Zalando's article images consisting of a training set of 60,000 examples and a test set of 10,000 examples.","archived":false,"fork":false,"pushed_at":"2024-09-24T14:48:09.000Z","size":1117,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T14:42:24.868Z","etag":null,"topics":["backpropagation-neural-network","data-science","datascience-machinelearning","jupyter-notebook","mlp-classifier","neural-network","python","python-library","python3"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aiaaee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-31T05:20:19.000Z","updated_at":"2024-09-24T14:48:13.000Z","dependencies_parsed_at":"2024-08-05T16:27:58.848Z","dependency_job_id":"4de88f62-9e8e-43d2-bc5c-26a2394e0afd","html_url":"https://github.com/aiaaee/FashionMNIST","commit_stats":null,"previous_names":["aiaaee/fasionmnist","aiaaee/fashionmnist"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiaaee%2FFashionMNIST","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiaaee%2FFashionMNIST/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiaaee%2FFashionMNIST/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiaaee%2FFashionMNIST/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aiaaee","download_url":"https://codeload.github.com/aiaaee/FashionMNIST/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248055275,"owners_count":21040151,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backpropagation-neural-network","data-science","datascience-machinelearning","jupyter-notebook","mlp-classifier","neural-network","python","python-library","python3"],"created_at":"2024-11-05T18:23:38.360Z","updated_at":"2026-04-29T14:32:24.877Z","avatar_url":"https://github.com/aiaaee.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# About Dataset\n\n## Context\n\nFashion-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. Zalando intends 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.\nThe original MNIST dataset contains a lot of handwritten digits. Members of the AI/ML/Data Science community love this dataset and use it as a benchmark to validate their algorithms. In fact, MNIST is often the first dataset researchers try. \"If it doesn't work on MNIST, it won't work at all\", they said. \"Well, if it does work on MNIST, it may still fail on others.\"\n\nZalando seeks to replace the original MNIST dataset\n\n\n## Content\n\nEach image is 28 pixels in height and 28 pixels in width, for a total of 784 pixels in total. Each pixel has a single pixel-value associated with it, indicating the lightness or darkness of that pixel, with higher numbers meaning darker. This pixel-value is an integer between 0 and 255. The training and test data sets have 785 columns. The first column consists of the class labels (see above), and represents the article of clothing. The rest of the columns contain the pixel-values of the associated image.\n\nTo locate a pixel on the image, suppose that we have decomposed x as x = i * 28 + j, where i and j are integers between 0 and 27. The pixel is located on row i and column j of a 28 x 28 matrix.\nFor example, pixel31 indicates the pixel that is in the fourth column from the left, and the second row from the top, as in the ascii-diagram below.\n\n![Screenshot from 2024-08-05 18-38-27](https://github.com/user-attachments/assets/bd0fbac5-2558-4da9-8067-553dbb0ae30e)\n\n\n### Labels\n\nEach training and test example is assigned to one of the following labels:\n\n0 T-shirt/top\n1 Trouser\n2 Pullover\n3 Dress\n4 Coat\n5 Sandal\n6 Shirt\n7 Sneaker\n8 Bag\n9 Ankle boot\n\n\n* Each row is a separate image\n* Column 1 is the class label.\n* Remaining columns are pixel numbers (784 total).\n* Each value is the darkness of the pixel (1 to 255)\n\n### Acknowledgements\n\nOriginal dataset was downloaded from [github](https://github.com/zalandoresearch/fashion-mnist)\n\nDataset was converted to CSV with this [script](https://pjreddie.com/projects/mnist-in-csv/):\n\n### License\nThe MIT License (MIT) Copyright © [2017] Zalando SE, https://tech.zalando.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faiaaee%2Ffashionmnist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faiaaee%2Ffashionmnist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faiaaee%2Ffashionmnist/lists"}