Gradient Descent and Optimizers

2 min

Objective: tune optimization without confusing learning speed with quality.

Gradient descent updates the parameters in the direction opposite to the gradient:

text
θ ← θ - η ∇L(θ)

η is the learning rate. Too small: slow progress or stagnation. Too large: oscillation, divergence or NaN.

The main optimizers

  • SGD: direct update; simple and often excellent generalization.
  • Momentum: averages recent directions and reduces oscillations.
  • Adam: adapts the step per parameter; efficient and fast baseline.
  • AdamW: correctly decouples weight decay; widely used with Transformers.
python
optimizer = torch.optim.AdamW(model.parameters(), lr=3e-4, weight_decay=1e-2)

Preview — the rest of the lesson is for enrolled readers.

Already enrolled with a code?

Your access is tied to your account, not to this link. Sign in with the same email you used in class: your course is waiting, no need to enter the code again.

Sign inNo account yet? Create one
This lesson is part of the “Training the Network” module

The first modules of the course are open to everyone. For the rest you have three options: buy this course once and for all, subscribe, or enter the code handed out in class.

Are you a student on this course?

The code is tied to your account: sign in or create an account and it will be applied automatically when you come back.

No account yet? Create one