Interviews Vector
Back to Roadmap
3
13 lessons

Deep Learning Core

Neural networks from first principles. No frameworks until you build one.

01

The Perceptron: Where It All Started

Build
Python

The perceptron is the atom of neural networks. Split it open and you find weights, a bias, and a decision.

02

Multi-Layer Networks & Forward Pass

Build
Python

One neuron draws a line. Stack them, and you can draw anything.

03

Backpropagation from Scratch

Build
Python

Backpropagation is the algorithm that makes learning possible. Without it, neural networks are just expensive random number generators.

04

Activation Functions: ReLU, Sigmoid, GELU & Why

Build
Python

Without nonlinearity, your 100-layer network is a fancy matrix multiply. Activations are the gates that let neural networks think in curves.

05

Loss Functions: MSE, Cross-Entropy, Contrastive

Build
Python

Your network makes a prediction. The ground truth says otherwise. How wrong is it? That number is the loss. Pick the wrong loss function and your model optimizes for the wrong t…

06

Optimizers: SGD, Momentum, Adam, AdamW

Build
Python

Gradient descent tells you which direction to move. It says nothing about how far or how fast. SGD is a compass. Adam is GPS with traffic data.

07

Regularization: Dropout, Weight Decay, BatchNorm

Build
Python

Your model gets 99% on training data and 60% on test data. It memorized instead of learning. Regularization is the tax you impose on complexity to force generalization.

08

Weight Initialization & Training Stability

Build
Python

Initialize wrong and training never starts. Initialize right and 50 layers train as smoothly as 3.

09

Learning Rate Schedules & Warmup

Build
Python

The learning rate is the single most important hyperparameter. Not the architecture. Not the dataset size. Not the activation function. The learning rate. If you tune nothing el…

10

Build Your Own Mini Framework

Build
Python

You have built neurons, layers, networks, backprop, activations, loss functions, optimizers, regularization, initialization, and LR schedules. All as separate pieces. Now wire t…

11

Introduction to PyTorch

Build
Python

You built the engine from pistons and crankshafts. Now learn the one everyone actually drives.

12

Introduction to JAX

Build
Python

PyTorch mutates tensors. TensorFlow builds graphs. JAX compiles pure functions. That last one changes how you think about deep learning.

13

Debugging Neural Networks

Build
Python

Your network compiled. It ran. It produced a number. The number is wrong and nothing crashed. Welcome to the hardest kind of debugging -- the kind where there is no error message.