Files
ezkl/data.sh
dcbuilder.eth a3ce1fd704 add(mnist data) (#53)
* fix(markdown styling)

* add(mnist data): download script for mnist dataset and readme explainer
2022-10-30 15:40:38 -04:00

12 lines
306 B
Bash
Executable File

#! /bin/bash
mkdir data
cd data
wget http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz
wget http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz
wget http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz
wget http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz
gzip -d *.gz