Representing neural network with vectors and matrices
Sep 8, 2018 · 4 min read
Previously in few blogs, we learned how the neuron works and created a simple implementation of the neural network which pretty much does the job of solving a simple linear equation.
- Function of neuron
- Implementing simple neural network Part 1 and Part 2
But when we start thinking of a very large network of 10 layers with 100’s of neurons, it is almost impossible to do a manual calculation or perform loops which will be very inefficient. Writing out all the calculations would be a huge…

