- The Network Class
- Develop a network class in python
- Store the weights
- Calculate the output by forward propagation
- Test with simple logical function networks.
Eg. network.calculate(x)
- The data
- Read MNIST data
- Unroll images into a single vector
- More network
- initialise with random inputs
- implment backpropagation and stochastic gradient descent
- Try it