Remove mnsit datasets

This commit is contained in:
Andrey Tkachenko 2019-07-15 17:48:28 +04:00
parent e59c02ab80
commit 82375f890b
11 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,3 @@
# [ W. I. P. ]
## Yet Another Rust Neural Network framework aka YARNN
Inspired by `darknet` and `leaf`

Binary file not shown.

Binary file not shown.

1
datasets/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
mnist

9
datasets/download.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
mkdir ./mnist
wget -P ./mnist/ http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz
wget -P ./mnist/ http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz
wget -P ./mnist/ http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz
wget -P ./mnist/ http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz
gzip -d -f ./mnist/*.gz