No description
Find a file
2025-02-02 16:46:37 +01:00
src added convert_pickle.py 2025-02-02 15:40:49 +01:00
.gitignore bugs fixed, improved loading 2023-03-03 16:30:13 +01:00
Cargo.lock reorganized 2023-03-03 16:45:52 +01:00
Cargo.toml reorganized 2023-03-03 16:45:52 +01:00
convert_pickle.py added convert_pickle.py 2025-02-02 15:40:49 +01:00
README.md added the convert in README.md 2025-02-02 16:46:37 +01:00

rust port of python in http://neuralnetworksanddeeplearning.com/chap1.html

main goal: me understanding what's going on

results: ~95% accuracy in 30 epochs, learning rate = 3.0, batchsize = 10

training_data/test_data not included
too big for github

Format: json:
[{"x":[float;784], "y": u32}]
=> x: 28x28 gray image as float
=> y: label 0.. 9

the data can be found here: https://github.com/mnielsen/neural-networks-and-deep-learning/blob/master/data/mnist.pkl.gz albeit in a different format, convert it with convert_pickle.py