Perceptron Intuition
The perceptron is the atom of deep learning. Every multi-billion-parameter transformer you've heard about is, at its core, a vast arrangement of units that trac…
~/blog/tutorials/deep-learning
The perceptron is the atom of deep learning. Every multi-billion-parameter transformer you've heard about is, at its core, a vast arrangement of units that trac…
The perceptron converged cleanly on the loan approval dataset from the previous post. Five applicants, two normalized features — income ratio and credit score r…
A perceptron can draw exactly one straight line. Churn prediction, fraud detection, and handwriting recognition all require curved, non-linear decision boundari…
The network in the previous post made a prediction of ŷ ≈ 0.536 for a sample whose true label is 0. The binary cross-entropy loss came out to 0.767. That is a l…
Every weight update in a neural network comes down to one question: how does a change in W affect the loss? The problem is that Loss doesn't mention W directly.…