Zenaique
Glossary · Training

GRPO (Group Relative Policy Optimization)

Also known as: Group Relative Policy Optimization

PPO without the critic: advantages are computed by ranking multiple sampled responses against each other.

A simplified RL algorithm popularized by DeepSeek-R1 that eliminates the value-function critic by computing advantages relative to a group of sampled responses. Cheaper and more stable than PPO for reasoning-model training.

In practice

Powers DeepSeek-R1 and increasingly the reasoning-model training stack. Cutting-edge interview topic for alignment-focused roles.

How it compares

PPO uses a learned value function as critic; GRPO uses the group mean reward, dropping the critic entirely.

Related topics

Related terms