Build for course assignment at university of Freiburg: GitHub Page
- Clone repository
- install requirements (! use python 2.7)
pip install -r requirements.txt
- Open python editor (e.x. jupyter notebook)
- Import run_mnist.py
- Train neural network
- Compute test error and show images that are classified right and wrong
import run_mnist as r
nn = r.train_mnist(0.7,100,100)
r.test_mnist(nn)
- Open python editor (e.x. jupyter notebook)
- Import run_gradient_checking.py
import run_gradient_checking