Updated Aug 23, 2026

Reinforcement Learning

RL

Training by trial and reward rather than from labeled examples — the system acts, gets scored, and adjusts toward whatever scores well.

Share

Listen to this lesson

Free preview · first 0:30
0:00 / 0:30

Audio & video lessons are paid features

Plus unlocks audio streaming. Pro adds downloadable audio, video, certificates, and more.

Plus adds:
  • Audio streaming
  • Downloadable PDFs
  • All AI Playbooks
  • Personalized content
Pro also adds:
  • Certificates of completion
  • Audio MP3 downloads
  • Video lessonssoon
  • & More…soon

Watch this lesson

AI Pro Playbook video — coming soon

What it means

Most machine learning learns from labeled examples: here is an input, here is the right answer. Reinforcement learning works differently. An agent takes actions, receives a reward signal indicating how well it did, and adjusts to earn more reward. Nobody supplies the right answer; the system discovers it.

That makes it the natural fit for problems where good behavior is easy to score but hard to demonstrate — games, robotic control, and any task with a checkable outcome. It is also considerably harder to get working than supervised learning, because the system must explore enough to find good strategies without wandering indefinitely.

It is now central to language models rather than a separate branch. RLHF uses it to turn a raw text predictor into an assistant, and reasoning models are trained largely through reinforcement learning on problems whose answers can be verified automatically.

Why it matters

Reinforcement learning is where a model's behavior is shaped rather than its knowledge, and where the well-known failure mode lives: a system optimizes exactly what you measured, not what you meant. Reward specification is genuinely difficult, and most surprising machine behavior traces back to a reward that was easier to satisfy in an unintended way.

In practice

Rarely something you run yourself, but the concept explains behavior you will meet constantly. When a model games an instruction — technically satisfying it while missing the point — that is reward optimization working as designed on an imperfect target.

Related terms