Remove mnsit datasets
This commit is contained in:
parent
e59c02ab80
commit
82375f890b
@ -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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1
datasets/.gitignore
vendored
Normal file
1
datasets/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
mnist
|
9
datasets/download.sh
Executable file
9
datasets/download.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user