Data vs. Reinforcement Learning
Ask five researchers what's actually driving 2025-2026's reasoning-model gains and you'll get five different weightings of the same two ingredients: more and better data, or reinforcement learning that reshapes how a model uses what it already knows. This piece looks at the actual evidence โ a paper showing RL narrows a model's solution distribution rather than expanding it, DeepSeek-R1's own documented account of what pure RL could and couldn't do, and the data-exhaustion timeline that makes this argument matter for how far scaling alone can carry the field.
Two Ingredients, One Very Different Story About Each
Every frontier model released since 2024 has been trained with both more/better data and some form of reinforcement learning layered on top. That makes it tempting to treat the two as complementary and move on. But for a series about recursive self-improvement, the split matters a great deal: if progress is mostly a data story, then RSI's leverage point is generating or finding better training data faster โ including AI-generated synthetic data, which raises its own risks. If progress is mostly an RL story, the leverage point is designing better reward signals and verification โ a very different, and in some ways more controllable, kind of self-improvement loop.
This article doesn't resolve that split, because the evidence doesn't resolve it. What it can do is walk through the actual documented findings on each side โ including one specific, fairly striking 2025 paper on what RL demonstrably does and doesn't do to a model's capabilities โ so the reader has real data points instead of vibes.
The Data Wall: A Real Timeline, Not a Talking Point
"We're running out of training data" is often said as a throwaway line. Epoch AI's research on this is the closest thing to a rigorous, citable answer. Their analysis estimates the effective stock of human-generated public text at roughly 300 trillion tokens (with a wide 90% confidence interval of 100 trillion to 1,000 trillion, reflecting real uncertainty about what counts as usable text). Under normal, non-overtrained scaling patterns, their projection puts full utilization of that stock somewhere between 2026 and 2032, with a commonly cited conservative estimate around 2028. If labs pursue aggressive overtraining โ training far past the compute-optimal point, which several 2024-2025 releases have done deliberately to shrink inference costs โ that timeline compresses toward the earlier end of the range.
What RLVR Actually Is
Reinforcement Learning with Verifiable Rewards (RLVR) is the specific technique behind most of the reasoning-model gains attributed to "RL" in 2024-2026 coverage. Unlike RLHF, where a learned reward model trained on human preference judgments provides the training signal, RLVR uses an automated, deterministic verifier: a math answer is checked against the known correct value, a piece of code is checked by running its unit tests, a proof is checked by a formal verifier. This sidesteps the reward-model imperfections discussed in Part 2 of this series for exactly the domains โ math, code, logic puzzles โ where a ground-truth checker is available.
This is also precisely why RLVR's gains concentrate so heavily in verifiable domains and much less in open-ended writing, judgment calls, or anything without a checkable answer โ there's no equivalent verifier for "is this essay well-argued" the way there is for "does this code pass its tests."
Does RL Teach New Capabilities, or Sharpen Existing Ones?
The single most important piece of evidence for this article comes from a 2025 paper, "Does Reinforcement Learning Really Incentivize Reasoning Capacity in LLMs Beyond the Base Model?", which ran a direct comparison most casual RL coverage skips: instead of only measuring pass@1 (does the model get the right answer on its first try), the researchers also measured pass@k for large k โ does the correct answer appear anywhere among many sampled attempts.
The same paper found something that cuts the other way: distillation โ training on outputs from a stronger teacher model โ did measurably expand the pass@k ceiling, introducing capabilities the student model's base distribution didn't already contain. That's a genuinely important asymmetry: two techniques that both improve benchmark scores, doing so through mechanistically different means, one of which is closer to "concentrating effort on already-latent ability" and the other closer to "actually importing new ability."
DeepSeek-R1's Own Account of What Pure RL Could and Couldn't Do
DeepSeek's January 2025 technical report (later published in Nature) is unusually candid about this exact tension, because the team ran the experiment directly: DeepSeek-R1-Zero was trained with large-scale reinforcement learning applied directly to the DeepSeek-V3 base model, with no supervised fine-tuning step at all โ a deliberate test of how far pure RL could go on its own.
- What Worked
- Reasoning capability โ including behaviors like self-verification and reflection โ emerged directly from RL without any SFT warm-start, and accuracy on math benchmarks like AIME improved substantially over the base model across training (DeepSeek's own report shows a large, multi-fold improvement in AIME pass@1 over the course of RL training; treat the exact percentage-point figures as approximate pending a direct check against the paper's own tables, since secondary sources cite slightly different numbers for different checkpoints).
- What Broke
- R1-Zero's outputs suffered from poor readability and language mixing โ the model would blend languages within a single chain of reasoning, and its outputs were often unnatural for a human reader to follow, even when the final answer was correct.
DeepSeek's fix, which became the full R1 pipeline, is itself informative: a small "cold-start" set of curated examples (data) before RL begins, rejection sampling and a language-consistency reward during RL, and further SFT and RL stages afterward. In other words, DeepSeek's own published solution to pure RL's failure mode was to add data back in โ not to abandon RL, but to combine both ingredients deliberately rather than picking one. That's arguably the most concrete real-world evidence available that "data vs. RL" is the wrong frame for how the labs that actually ship these models think about the problem โ it's data and RL, sequenced carefully, with each compensating for the other's weaknesses.
Quality Over Quantity: The Phi Model Series
A separate strand of evidence concerns whether more data is even the right axis to optimize, versus better-curated data. Microsoft Research's "Textbooks Are All You Need" (June 2023) introduced phi-1, a 1.3-billion-parameter code model trained on a deliberately small, highly curated "textbook-quality" dataset โ combining filtered web data with synthetically generated textbook-style examples โ and reported HumanEval coding performance competitive with much larger models trained on generic web-scraped code. A follow-up, "Textbooks Are All You Need II," extended the same curated-data philosophy to general reasoning with phi-1.5.
Model Collapse: The Risk of Training on Your Own Output
If human-generated data is running out and synthetic (AI-generated) data is the substitute, a documented failure mode becomes directly relevant: a 2024 Nature paper by Shumailov, Shumaylov, Zhao, Papernot, Anderson, and Gal showed that recursively training generative models on their own โ or their predecessors' โ synthetic output causes progressive degeneration, termed model collapse. Both theoretically (using a Gaussian estimation model) and empirically (with language models), the paper demonstrated a narrowing effect: successive generations lose the tails of the original data distribution, drift toward an increasingly narrow mode, and can eventually produce degenerate or repetitive output.
Why This Matters Specifically for Recursive Self-Improvement
An AI system that's automating its own research โ the subject of Part 4 โ has to make exactly this data-vs-RL tradeoff at machine speed and, potentially, with less human oversight of the choice. If the "RL sharpens rather than teaches" finding generalizes, an RSI loop that only relies on RL against its own outputs may hit a ceiling defined by what's already latent in its base model โ real acceleration of research throughput, but not necessarily an escape from the base model's fundamental capability boundary. Genuinely expanding that boundary, per the same paper's finding about distillation, would require injecting new signal from outside the model's own distribution โ meaning a purely self-referential RSI loop, one that only trains a model on evaluations of its own outputs without new external data or a stronger outside teacher, has a specific, evidenced reason to plateau rather than compound indefinitely.
Model collapse adds a second, related concern: if that same self-referential loop generates its own training data for the next round without careful curation, it inherits the exact conditions under which model collapse has been demonstrated. This doesn't predict that any real RSI system will collapse โ it identifies a specific, named failure mode that any system relying on self-generated data needs to actively design against, rather than a hypothetical risk with no documented precedent.
Expert Disagreement
Four Parts Published, Two to Go
Readiness Checklist
โ ๏ธ What's Missing or Uncertain
๐ Reference Links
- Villalobos et al. โ "Will We Run Out of Data? Limits of LLM Scaling Based on Human-Generated Data" (Epoch AI, arXiv:2211.04325)
- "Does Reinforcement Learning Really Incentivize Reasoning Capacity in LLMs Beyond the Base Model?" (arXiv:2504.13837)
- DeepSeek-AI โ "DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning" (arXiv:2501.12948)
- "Reinforcement Learning with Verifiable Rewards Implicitly Incentivizes Correct Reasoning in Base LLMs" (arXiv:2506.14245)
- Gunasekar et al. โ "Textbooks Are All You Need" (Microsoft Research, arXiv:2306.11644)
- "Rethinking Benchmark and Contamination for Language Models with Rephrased Samples" (arXiv:2311.04850)
- Shumailov et al. โ "AI Models Collapse When Trained on Recursively Generated Data" (Nature, 2024)
- This site โ The DeepSeek Lineage: A Consolidated Comparison
- This site โ Recursive Self-Improvement: A Primer (Part 1)
- This site โ AI Automating AI Research: RSI's Testing Ground (Part 4)