Ring-Zero: Scaling Zero RL to a Trillion Parameters for Emergent Reasoning
arXiv · HuggingFace · ▲91
Abstract (verbatim)
Reinforcement learning with verifiable rewards without human-annotated data, often referred to as zero RL, has emerged as a powerful paradigm for eliciting chain-of-thought reasoning. However, due to computational constraints, existing studies are largely restricted to small models, leaving the training dynamics and emergent capabilities at a large scale unexplored. To meaningfully explore this frontier, we aim to elicit high-quality reasoning behaviors from the model. However, we find that naive scaling often suffers from poor readability, token redundancy, and a lack of adaptive reasoning depth. To address these challenges, we present a stable and efficient training pipeline, incorporating algorithmic and system optimizations such as clipped importance sampling, training-inference ratio correction, and mixed-precision control. Our experiments offer three key findings that validate the "bitter lesson" of scaling: (1) scaling to 1T parameters significantly enhances sample efficiency and performance ceilings; (2) the training process progresses sequentially through an initial discovery phase followed by a sharpening phase; and (3) the model spontaneously develops advanced cognitive behaviors, including anthropomorphism, structured formatting, self-verification, parallel reasoning, and context anxiety, rendering hand-crafted heuristics redundant. Evaluated on seven mathematical benchmarks, Ring-2.5-1T-Zero achieves competitive performance. Additionally, to assess CoT quality beyond final-answer correctness, we propose a structured evaluation framework across three dimensions: comprehensibility, reproducibility, and efficiency, where our model demonstrates clear advantages in producing structured and concise reasoning traces. By sharing our observed emergent phenomena, we hope to provide the community with deeper insights into scaling behaviors, particularly at the 1-trillion scale.
Background
Background Analysis
1. Technical Context and Needs
Chain-of-Thought (CoT) reasoning is critical for large language models (LLMs) to solve complex tasks, especially in domains like mathematics or code generation where multi-step logic is required. Traditional methods rely on human-annotated data to guide reasoning, which is expensive and limited in coverage. Zero RL (reinforcement learning without supervised CoT data) emerged as a solution, allowing models to autonomously learn reasoning strategies through trial-and-error using verifiable rewards (e.g., answer correctness). However, most studies are confined to small models (e.g., 100B parameters) due to computational constraints, leaving the potential of trillion-parameter models unexplored.
2. Limitations of Previous Methods
Existing zero RL approaches face three key issues:
- Poor readability: Generated reasoning traces lack logical structure, making them hard for humans to verify;
- Inefficiency: Standard algorithms (e.g., GRPO) encourage longer outputs, leading to redundant steps and wasted compute;
- Lack of dynamic depth: Fixed response budgets prevent models from adapting reasoning depth to task complexity.
Additionally, small-scale studies cannot reveal how training dynamics evolve at trillion-parameter scales, such as whether new cognitive behaviors emerge.
3. Solution Approach
This paper proposes a trillion-parameter zero RL framework (Ring-Zero) with lightweight optimizations:
- Algorithmic improvements: Clipped importance sampling mitigates length bias, while training-inference ratio correction encourages high-quality reasoning;
- System optimizations: Mixed-precision computing and context parallelism improve training efficiency;
- Adaptive depth: Tier-based training dynamically adjusts reasoning depth for different tasks.
These changes stabilize training at scale and enable spontaneous emergence of advanced behaviors (e.g., structured formatting, self-verification) without manual heuristics.
4. Key Differences from Prior Work
This work stands out by:
- Scale breakthrough: First to validate trillion-parameter zero RL, showing emergent human-like strategies (e.g., "context anxiety");
- Quality evaluation: Proposes a multidimensional CoT framework assessing comprehensibility, reproducibility, and efficiency;
- Minimalist design: Demonstrates that pure reinforcement learning training suffices, proving the "bitter lesson" that scale outperforms hand-crafted heuristics.
In summary, this paper advances understanding of zero RL at extreme scales and highlights the potential of unsupervised reasoning.

































