iterative / dataset-registry

Dataset registry DVC project
68 stars 40 forks source link

Add image directory version for MNIST dataset #17

Closed iesahin closed 3 years ago

iesahin commented 3 years ago

It's better to have a browsable directory with images.

It can be a directory in the form of

images
├── test
│   ├── 0
│   ├── 1
│   ├── 2
│   ├── 3
│   ├── 4
│   ├── 5
│   ├── 6
│   ├── 7
│   ├── 8
│   └── 9
└── train
    ├── 0
    ├── 1
    ├── 2
    ├── 3
    ├── 4
    ├── 5
    ├── 6
    ├── 7
    ├── 8
    └── 9

Each directory will contain a set of images for the corresponding label.

A total of 70000 28x28 grayscale images will be stored. We can also use a .zip file that stores all the images to reduce the download overhead.