Glossary · Term

learning rate

← all terms

Definition

Plain language

A tuning knob that controls how big each training step is.

As stated in the literature

The scalar coefficient on gradient updates in neural network training, governing step size in parameter space; analogized in SkillOpt to a bounded number of skill-document edits per round.

Why it matters: It's one of the most consequential single hyperparameters in training — too small wastes compute, too large diverges.

For example, with a learning rate of 0.01, each gradient update nudges the weights by 1% of the suggested direction, while 0.1 would take ten times bigger steps.

Heard on the show

“Maybe the single-layer runs got a lucky learning rate.”
Episode 193 — Freeze Most of the Network: Where RL Improvement Actually Lives in a Transformer

Mentioned in 4 episodes

  1. 193
    Freeze Most of the Network: Where RL Improvement Actually Lives in a Transformer
  2. 148
    Why Letting an AI Watch Its Own Scoreboard Can Quietly Overwrite Its Safety
  3. 078
    Training a Markdown File: When LLM Self-Improvement Borrows the Discipline of Neural Net Training
  4. 053
    An AI Agent Swapped In Focal Loss And Beat A Human-Tuned Training Script

Related terms