Ring-Zero: Scaling Zero RL to a Trillion Parameters for Emergent Reasoning is mainly a scale study and training recipe for zero-RL reasoning:

Their goal is not just correctness, but high-quality CoT along three dimensions:

The key aspect is changing the optimisation regime over training, rather than trying to optimise discovery and efficiency with one objective:

  1. Elicit reasoning:
    • use token-level loss, while progressively increasing context from 4k to 64k
    • this amplifies rare, correct reasoning tokens, giving the model room to develop longer derivations
  2. Compress and reset:
    • sample multiple traces, select and further prune the shortest correct one then distil back into the original base model
    • this retains the acquired reasoning whilst removing verbosity and resetting accumulated train/rollout mismatch
  3. Continue RL:
    • switch to sample-level loss normalisation, removing bias towards longer outputs
    • this allows performance to improve without continued length inflation
  4. Control the budget:
    • train explicit short, medium and long reasoning modes
    • this gives controllable inference cost, but slightly reduces peak long-budget performance

This resolves the apparent contradiction with their comprehensibility and efficiency goals:

  1. Use length pressure to elicit reasoning
  2. Compress the traces and remove the length incentive

Authors acknowledge that this is a staged heuristic, rather than a unified objective for reasoning quality and token efficiency.

Results are broadly positive, but narrow:

The most useful parts for post-training (according to ChatGPT):

Overall, a useful engineering paper, though the framing is stronger than the evidence: