← Learn

GRPO fine-tuning

Group Relative Policy Optimization: a reinforcement-learning fine-tuning method that ranks groups of model outputs against each other to improve task performance without a separate reward model.

Learn

When to use it

Use GRPO fine-tuning when standard supervised learning isn't enough to optimize a model's task-specific performance. GRPO fine-tuning ranks groups of potential outputs, improving performance in tasks like catalog review without needing a separate reward model.

Quick example

In a catalog review task using a 9B parameter open model, GRPO fine-tuning can be applied to enhance performance. The method ranks groups of outputs from the model to determine the best options for the task. Here, GRPO fine-tuning is the reinforcement-learning method that allows the model to outperform more expensive, larger models by refining task-specific outputs.

Ecosystem

GRPO fine-tuning fits within the broader reinforcement learning framework and operates without a separate reward model.

        ┌─ model outputs ─┐
GRPO →│ ranks groups │→ improved task performance
        └─────────────────┘

Misconceptions

MisconceptionRebuttal
It requires a reward modelGRPO ranks outputs directly without one
It's only for large modelsGRPO is effective on smaller models too

Trade-offs

  • Task-specific gains — requires careful group ranking setup
  • No reward model needed — may limit flexibility in reward design

Seen in