Mark As Completed Discussion

Deep Learning Defined

Deep learning is a way to learn functions by stacking layers of simple units (neurons) so that the whole network can approximate very complex input→output mappings. A neural network is just a composable function: output = layer_L(...layer_2(layer_1(input))).

Why “deep”? Because there are many layers (depth). Why “learning”? Because the network’s numeric knobs (its weights and biases) are tuned to minimize a loss—a number that measures how wrong the network is on your data.

Deep Learning Defined

Where It Fits

  • Machine learning (ML): learn patterns from data.
  • Representation learning: learn useful features automatically (instead of hand-crafting them).
  • Deep learning (DL): representation learning with many layers of differentiable transformations.

DL shines when you have large datasets, high-dimensional inputs (images, audio, text), and the need for end-to-end learning.

From Perceptron to Neuron

A perceptron is a mathematical model of a biological neuron that takes numerical inputs, applies weights, adds a bias, and uses an activation function to produce a binary output, classifying data into two categories.

The original perceptron computed: y = step(w·x + b). Modern neurons do: z = w·x + b, then a = φ(z) where φ is an activation function (e.g., ReLU, sigmoid, tanh). Stacking many neurons gives you a layer; stacking layers gives you a network.

From Perceptron to Neuron

Let's test your knowledge. Click the correct answer from the options.

Which statement is most accurate?

Click the option that best answers the question.

  • Deep learning requires non-differentiable activations to be expressive.
  • Deep learning stacks linear layers; without non-linear activations this equals one big linear map.
  • Deep learning is a rule-based expert system with no training.
  • Deep learning can’t model images.

The Math You Really Need

Here's the mathematical terms at play:

  • Weights (W) and biases (b): the parameters we learn.
  • Activation function φ: adds non-linearity (e.g., ReLU(x) = max(0,x)).
  • Loss: scalar measuring error, e.g., MSE for regression, cross-entropy for classification.
  • Gradient: vector of partial derivatives that tells us how to tweak parameters to reduce loss.
  • Gradient descent: update rule θ ← θ − η ∇θ L with learning rate η.

A Tiny Neuron

Here is a tiny neuron implementation. It is a single neuron with ReLU activation, trained with plain gradient descent to learn y ≈ 2*x + 1 on synthetic data. Standard library only.

PYTHON
OUTPUT
:001 > Cmd/Ctrl-Enter to run, Cmd/Ctrl-/ to comment

Let's test your knowledge. Is this statement true or false?

ReLU(x) = max(0, x) is differentiable everywhere, including at x = 0.

Press true if you believe the statement is correct, or false otherwise.

Forward, Loss, Backprop: The Loop

The Forward, Loss, Backprop loop is the core training process for a neural network, where a forward pass makes a prediction, a loss function calculates how wrong it is, and backpropagation computes gradients to update the model's weights, reducing error over many iterations to improve future predictions.

  1. Forward: compute predictions from inputs via layers and activations.
  2. Loss: compare predictions to targets.
  3. Backward: compute gradients of loss w.r.t. each parameter (backpropagation).
  4. Update: adjust parameters with gradient descent (or a fancier optimizer).
Forward, Loss, Backprop: The Loop

Let's test your knowledge. Could you figure out the right sequence for this list?

Put the training steps in the correct order:

Press the below buttons in the order in which they should occur. Click on them again to un-select.

Options:

  • Compute loss on predictions
  • Update parameters
  • Run forward pass
  • Backpropagate gradients

Two-Layer Network Implementation

Here is a minimal 2-layer MLP for binary classification on a toy dataset using the standard library only.

PYTHON
OUTPUT
:001 > Cmd/Ctrl-Enter to run, Cmd/Ctrl-/ to comment

Are you sure you're getting this? Fill in the missing part by typing it in.

A function used to map raw logits to probabilities over multiple classes is called ________. It ensures outputs are non-negative and sum to 1.

Write the missing line below.

Multiclass Heads & Cross-Entropy

For K classes, we compute a vector of logits z ∈ ℝ^K, then apply softmax(z)_k = e^{z_k} / Σ_j e^{z_j}. Use cross-entropy loss: L = − Σ_k y_k log(softmax(z)_k) where y is a one-hot label.

Are you sure you're getting this? Click the correct answer from the options.

Which combination is typical for multiclass classification?

Click the option that best answers the question.

  • `Linear` → `sigmoid` → `MSE`
  • `Linear` → `softmax` → `cross-entropy`
  • `Linear` → `ReLU` → `hinge loss`
  • `Linear` → `tanh` → `MAE`

Regularization & Generalization

  • Overfitting: model learns noise; low training loss, high validation loss.
  • Underfitting: model too simple; high training and validation loss.
  • Regularization: techniques to improve generalization:
Regularization & Generalization
  • L2 (weight decay): penalize large weights.
  • Early stopping: stop when validation loss worsens.
  • Dropout: randomly drop units during training (simulated in code by masking).
  • Data augmentation: alter inputs (flips/crops/noise) to create variety.

Add L2 Weight Decay

This illustrates adding L2 penalty to the loss inside training loop.

PYTHON
OUTPUT
:001 > Cmd/Ctrl-Enter to run, Cmd/Ctrl-/ to comment

Try this exercise. Is this statement true or false?

Transformers eliminate the need for recurrence by using attention to connect positions in a sequence directly.

Press true if you believe the statement is correct, or false otherwise.

When NOT to Use Deep Learning

  • Tiny dataset with easily engineered features? Try simpler ML (like linear or tree-based models).
  • Need perfect interpretability or strict guarantees? DL may be harder to justify.
  • Low compute budget or latency constraints? A smaller model may be better.

Rule of thumb: start simple, scale up when the problem/data demands it.

Build Your Own MLP

Here's a minimal 2-layer MLP for XOR using standard libraries only.

JAVASCRIPT
OUTPUT
:001 > Cmd/Ctrl-Enter to run, Cmd/Ctrl-/ to comment

Hardware and Complexity

  • Training cost grows with data size, model size, and sequence/image resolution.
  • Batch size: how many samples per gradient step. Larger batches use more memory.
  • Epoch: one full pass over training data.
  • Typical accelerators: GPUs/TPUs; but conceptually all you need is the math we wrote.

Ethics, Safety, and Bias

Neural nets learn what they see. If training data is biased, the model may be biased. Key ideas:

  • Dataset curation and evaluation on diverse slices.
  • Explainability tools (feature attributions, probes) to audit behavior.
  • Safety: avoid harmful outputs; consider rate limits, human review, domain constraints.

Quick Debugging Playbook

  • Sanity check: can the model overfit a tiny subset (e.g., 10 samples)?
  • Loss not decreasing? Lower lr, check gradient signs and shapes.
  • Exploding loss? Clip gradients, reduce lr, check for NaNs.
  • Validation worse than training? Add regularization or more data.

Try this exercise. Click the correct answer from the options.

Which change most directly combats overfitting?

Click the option that best answers the question.

  • Increase learning rate dramatically
  • Add L2 penalty and use early stopping
  • Remove validation set
  • Train forever

Are you sure you're getting this? Fill in the missing part by typing it in.

A single run through the entire training dataset is called an ________.

Write the missing line below.

Try this exercise. Is this statement true or false?

Without non-linear activations, stacking multiple linear layers is equivalent to a single linear transformation.

Press true if you believe the statement is correct, or false otherwise.

You’ve seen what deep learning is, why it works, and you’ve implemented tiny nets from scratch. When you’re ready, port these to a proper framework—but now you’ll know exactly what the framework is doing under the hood.

One Pager Cheat Sheet

  • Deep learning learns complex input→output mappings by stacking layers of simple units into a neural network that is a composable function (e.g., output = layer_L(...layer_2(layer_1(input)))), where many layers provide depth and the model’s numeric knobs—the weights and biases—are tuned to minimize a loss.
  • Machine learning (ML) learns patterns from data, Representation learning learns useful features automatically, and Deep learning (DL) is representation learning with many layers of differentiable transformations that excels on large datasets, high-dimensional inputs (images, audio, text), and when end-to-end learning is required.
  • A perceptron is a mathematical model of a biological neuron that originally produced a binary output via y = step(w·x + b), while modern neurons compute z = w·x + b then a = φ(z) with an activation function (e.g., ReLU, sigmoid, tanh), and stacking layers of such neurons produces neural networks.
  • Because the composition of linear maps is itself a linear map, stacking layers that compute z = W x + b (with identity activations) simply collapses to a single equivalent layer with W_eq = W^(L) ... W^(1) and a combined bias, so without a non-linear activation (e.g. ReLU, sigmoid, tanh) depth does not increase a network's representational power and cannot produce non-linear decision boundaries.
  • Neural networks learn Weights (W) and biases (b) — the parameters we learn — apply an activation function φ (e.g., ReLU(x) = max(0,x)) to add non-linearity, measure performance with a Loss (e.g., MSE or cross-entropy) as the error measure, compute the Gradient (partial derivatives) as the direction to improve parameters, and use Gradient descent with the update rule θ ← θ − η ∇θ L (step size given by learning rate η) as the update rule.
  • A tiny implementation of a single neuron with ReLU activation, trained with gradient descent to learn y ≈ 2*x + 1 on synthetic data, using the standard library only.
  • ReLU f(x)=max(0,x) is differentiable for x ≠ 0 but not differentiable at 0 because the left-hand derivative = 0 and the right-hand derivative = 1, though it is continuous at 0, has subgradients in [0,1] there, and is therefore almost everywhere differentiable, so gradient-based training remains practical.
  • The core training loop—Forward (compute predictions), Loss (measure error), Backward (compute gradients via backpropagation), and Update (adjust weights using gradient descent or other optimizers)—repeats many times to reduce error and improve the model.
  • The steps must occur in order: forward pass to compute y_hat and cache activations, then compute loss to get a scalar L(y_hat, y), then backpropagate gradients to obtain ∂L/∂θ, and finally update parameters with an optimizer (e.g., SGD), because each step depends on the previous step's outputs.
  • This is a minimal implementation of a Two-Layer Network: a 2-layer MLP performing binary classification on a toy dataset using the standard library only.
  • The missing word is softmax, a mapping from raw logits via p_i = exp(z_i)/sum_j exp(z_j) that produces non-negative outputs which sum to 1 (forming a proper probability distribution), preserves ordering (so the argmax is unchanged), is invariant to additive constants (enabling numerical stability by subtracting max), supports temperature scaling to control peakiness (→ one-hot as temp→0, uniform as temp→∞), reduces to the sigmoid for two classes, and has Jacobian ∂p_i/∂z_j = p_i(δ_ij - p_j) which with cross-entropy and a one-hot target yields the simple gradient p - y.
  • Multiclass heads compute a vector of logits z ∈ ℝ^K for K classes, convert them to probabilities with softmax softmax(z)_k = e^{z_k} / Σ_j e^{z_j}, and optimize using cross-entropy loss L = − Σ_k y_k log(softmax(z)_k) where y is a one-hot label.
  • The pipeline Linearsoftmaxcross-entropy is standard because the final Linear produces unconstrained real-valued logits that softmax turns into a probability distribution, cross-entropy (the negative log-likelihood) trains those probabilities with simple, stable gradients (∂L/∂z = p − y) and a clear probabilistic interpretation with numerically stable fused implementations, while for multi-label problems one should instead use sigmoid + binary cross-entropy.
  • Overfitting (low training loss, high validation loss) versus Underfitting (high training and validation loss): Regularization aims to improve generalization using techniques like L2 (weight decay), Early stopping, Dropout, and Data augmentation.
  • Add L2 Weight Decay: illustrates adding an L2 penalty to the loss inside the training loop.
  • The statement is true: unlike RNN/LSTM models that use recurrence, the transformer uses self-attention—computing queries, keys, and values and weights via softmax(Q K^T / sqrt(d_k)) V—so each layer yields direct, learnable, parallel connections between all positions (thereby eliminating recurrence, providing a short path length for dependencies, and enabling parallel processing across sequence positions), while practical additions like positional encoding, multi-head attention, and masked attention supply order information, richer relations, and autoregressive causality, at the cost of an O(n^2) trade-off in memory and compute.
  • For problems with a tiny dataset and easily engineered features try simpler ML (e.g. linear or tree-based models), when you need perfect interpretability or strict guarantees DL is hard to justify, and with low compute or tight latency constraints a smaller model is preferable—start simple and scale up when the problem/data demands it.
  • This provides a minimal 2-layer MLP that implements the XOR function using standard libraries only.
  • Training cost grows with data size, model size, and sequence/image resolution; Batch size (samples per gradient step) and Epoch (one full pass over data) affect memory and training dynamics, and while typical accelerators are GPUs/TPUs, conceptually you only need the underlying math.
  • Neural nets learn what they see, so to mitigate biased training data you should perform dataset curation and evaluation on diverse slices, use explainability tools such as feature attributions and probes to audit behavior, and adopt safety measures like rate limits, human review, and domain constraints to avoid harmful outputs.
  • Run a sanity check by confirming the model can overfit a tiny subset (e.g., 10 samples); if loss not decreasing, lower lr and inspect gradients signs/shapes; if exploding loss, clip gradients, reduce lr, and check for NaNs; if validation worse than training, add regularization or gather more data.
  • Because Overfitting is primarily a high-variance problem, adding an L2 penalty (a weight decay term like lambda * ||w||^2 that shrinks weights) and using early stopping (monitoring val_loss and halting after patience) both primarily reduce variance—the former by constraining parameter magnitudes and the latter by limiting optimization time—and together act complementarily to improve generalization.
  • The correct fill-in is epoch: a single pass through the entire training dataset (aka a pass), which differs from a batch/mini-batch and an iteration—one iteration updates parameters using one batch—and because the number of epochs controls how often the model sees the full data, training for too many epochs can cause overfitting (mitigate with a validation set, early stopping, fewer epochs, or regularization).
  • The composition of linear layers of the form f(x) = W x + b is itself a single linear transformation—e.g. f2(f1(x)) = (W2 W1) x + (W2 b1 + b2)—so stacking layers without non-linear activations adds no expressive power, though hidden dimensions can impose a rank constraint on the resulting matrix.
  • You’ve learned what deep learning is and why it works, implemented tiny nets from scratch, and are ready to port them to a proper framework—now knowing exactly what the framework is doing under the hood.