Neural Networks
Sources:
- The spelled-out intro to neural networks and backpropagation: building micrograd
- Stanford CS231N, Lecture 4
Other useful resources:
StatQuest's Neural Networks videos
Efficient backprop. You need do download it via
1
wget http://yann.lecun.com/exdb/publis/pdf/lecun-98b.pdf
The python script and jupyter notebook used in this article can be found at here.
This article is a step-by-step explanation of neural networks which are extensively used in machine learning. It only involves the most basic case where the input of a neuron is a vector (1-D tensor)and output of a neuron is a scalar (0-D tensor). But the idea holds for higher, please reter to Derivatives, Backpropagation, and Vectorization for details.
# TODO