mirror of
https://github.com/zkonduit/ezkl.git
synced 2026-01-10 06:48:01 -05:00
* fix(markdown styling) * add(mnist data): download script for mnist dataset and readme explainer
12 lines
306 B
Bash
Executable File
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
|