Papers · DeepSeek-R1
AI PAPER

DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning

Used pure reinforcement learning to train language models to develop sophisticated reasoning chains, achieving performance competitive with OpenAI's o1 without supervised reasoning examples.

Authors
DeepSeek-AI
Institution
DeepSeek
Published
January NaN, 2025
Category
Reasoning
Impact
major
PAPER EXPLAINED

Plain-English Summary

Most AI reasoning models (like OpenAI’s o1) are trained by showing the model examples of good reasoning chains — step-by-step solutions written by humans or stronger models. DeepSeek-R1 took a radically different approach: it used pure reinforcement learning, rewarding the model only for getting the right final answer and letting it discover its own reasoning strategies through trial and error.

The results were remarkable. Without being shown any examples of how to reason, the model spontaneously developed behaviors like breaking problems into sub-steps, checking its own work, exploring alternative approaches, and explicitly allocating “thinking time” to harder problems. It achieved performance competitive with frontier reasoning models on math and coding benchmarks.

Think of it as the difference between teaching someone to solve puzzles by showing them solutions versus simply rewarding them for correct answers. Given enough practice, they develop their own problem-solving strategies — and sometimes discover approaches no teacher would have thought to demonstrate.

Key Innovation

DeepSeek-R1’s key insight was that reinforcement learning alone (specifically, Group Relative Policy Optimization or GRPO) can incentivize sophisticated reasoning behavior without supervised reasoning examples. The model was rewarded for correct final answers and penalized for formatting violations, but received no guidance on how to reason. Emergent behaviors included self-verification, backtracking, and reflection.

The paper also introduced DeepSeek-R1-Zero (pure RL, no supervised fine-tuning) to study emergent reasoning, then combined RL with cold-start supervised data to produce the final DeepSeek-R1 model with improved readability and consistency.

Impact on the Field

DeepSeek-R1 demonstrated that reasoning capabilities can emerge from simple reward signals rather than requiring curated reasoning demonstrations. This has major implications for AI development: if models can discover effective reasoning strategies through exploration, then the bottleneck for improving AI reasoning may be compute for RL training rather than human-generated reasoning data.

The paper also accelerated the democratization of reasoning models by releasing open weights, enabling the broader community to study and build on explicit reasoning capabilities that were previously available only through proprietary APIs.

Models That Built on This

DeepSeek-R1-Distill compressed the reasoning capabilities into smaller models (1.5B to 70B parameters) through knowledge distillation. The open-weight release sparked numerous community adaptations and studies. Kimi k1.5 and other Chinese AI models followed similar RL-based reasoning approaches. The paper’s RL methodology is being adopted by labs worldwide as a training technique for improving reasoning without expensive human annotation of reasoning chains.