Ring-Zero: Scaling Zero RL to a Trillion Parameters for Emergent Reasoning

Ring-Zero (arXiv:2607.12395v1) is the first work to successfully scale Zero RL — reinforcement learning with verifiable rewards and zero human-annotated data — to 1T-parameter models, empirically validating the 'bitter lesson': scaling alone substantially improves sample efficiency and performance ceilings, while revealing a sequential two-phase training dynamic ('discovery' followed by 'sharpening').
Ring-Zero: The First Stable Training Framework for Trillion-Parameter Zero RL
Ring-Zero (arXiv:2607.12395v1) is the first systematic effort to overcome computational bottlenecks and scale Zero RL — i.e., reinforcement learning relying solely on programmatically verifiable rewards (e.g., formal proof validity, code execution correctness), without any human annotations — to 1T-parameter models. Its objective is to elicit emergent chain-of-thought reasoning, decoupled from supervised fine-tuning or human feedback.
Key Challenges and Technical Innovations
Prior Zero RL studies are largely confined to models <10B parameters, preventing observation of training dynamics and capability emergence at scale. Ring-Zero identifies that naive scaling degrades output readability, introduces severe token redundancy, and fails to induce adaptive reasoning depth. To address this, the authors introduce a stable and efficient training pipeline featuring three core algorithmic and systems optimizations:
- Clipped importance sampling: mitigates policy update variance to ensure training stability;
- Training-inference ratio correction: dynamically aligns training step count with inference length to reduce long-horizon misalignment;
- Mixed-precision control: enables fine-grained precision management across FP16/BF16/FP8 for gradient propagation and activation storage, reducing peak memory while preserving numerical fidelity.
Three Empirical Findings: Validating the 'Bitter Lesson'
Experiments use Llama-based architectures trained exclusively on verifiable rewards (e.g., MATH theorem verification, GSM8K code-execution pass/fail signals), with no human supervision. Results show:
- (1) Scale as capability: scaling from 10B to 1T parameters yields a 4.2× improvement in sample efficiency and lifts MATH-500 accuracy from 41.3% to 68.7%, confirming higher performance ceilings;
- (2) Two-phase training dynamics: training progresses sequentially through an initial 'discovery phase' (exploration-heavy, generating diverse reasoning paths) followed by a 'sharpening phase' (convergence to concise, high-confidence derivations);
- (3) Emergent reasoning depth: the 1T model achieves a mean reasoning depth of 23.6 steps (±2.1) on GSM8K, with >85% of successful solutions exhibiting cross-subproblem causal backtracking — a phenomenon absent in models <100B.