Can tiny recursive networks outperform massive language models?
Can a small network that recursively refines its reasoning on a latent state match or beat billion-parameter LLMs on hard reasoning puzzles? This challenges assumptions about scale and hierarchy in AI reasoning.
Autoregressive LLMs are fragile on hard puzzles because a single wrong token can invalidate an answer, and the usual patches — chain-of-thought and test-time compute — are expensive, data-hungry, and brittle. The Tiny Recursive Model (TRM) takes the opposite bet: a single 2-layer network with only 7M parameters that recurses on its own latent reasoning feature and progressively improves its final answer. It reaches 45% on ARC-AGI-1 and 8% on ARC-AGI-2 — higher than most LLMs including DeepSeek R1, o3-mini, and Gemini 2.5 Pro — with less than 0.01% of their parameters.
The keeper is what TRM removes relative to its predecessor HRM: no fixed-point theorem, no biological hierarchy, no two interacting networks, no extra halting forward pass. A single tiny network recursing beats the hierarchical version, which isolates recursion on a latent state — not scale, not hierarchy — as the source of generalization. (The authors are candid that no single choice is universally optimal: replacing self-attention with an MLP helped Sudoku but hurt other tasks, so architecture still needs per-problem tuning and scaling laws.)
This sharpens the vault's recurrence cluster. TRM directly simplifies Can recurrent hierarchies achieve reasoning that transformers cannot? (HRM), and it agrees mechanistically with How do looped language models actually improve reasoning in depth?: recursion re-applies computation on a latent state, and that reuse — at tiny scale — is what generalizes.
Inquiring lines that read this note 16
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
Why do continual learning scenarios trigger catastrophic forgetting and interference? How does latent reasoning compare to verbalized chain-of-thought? Does decoupling planning from execution improve multi-step reasoning accuracy? What makes weaker teacher models effective for stronger student training? When does architectural design matter more than raw model capacity? Does model scaling alone produce compositional generalization without symbolic mechanisms?- Where do neural networks still fail at compositional generalization despite scaling?
- Why does recursion on latent states improve generalization more than scale?
- Can recursion alone drive generalization better than model scale?
- Can removing hierarchy from dual-recurrence models improve reasoning performance?
- What makes recursive depth more effective than parametric depth for puzzles?
Related concepts in this collection 3
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Can recurrent hierarchies achieve reasoning that transformers cannot?
Can a dual-timescale recurrent architecture escape the computational limitations of standard transformers and solve complex reasoning tasks without explicit chain-of-thought? This explores whether architectural design, not scale, enables true algorithmic reasoning.
TRM strips HRM to one tiny network and generalizes better, isolating recursion from hierarchy
-
How do looped language models actually improve reasoning in depth?
Mechanistic analysis investigates whether looping transformer layers creates genuinely new computation or reuses existing inferential stages. Understanding this distinction clarifies why recurrent depth can match standard scaling.
mechanistic agreement: recursion reuses computation on a latent state
-
Can looped transformers generalize to unseen knowledge combinations?
Do transformers that reuse layers across iterations succeed where standard transformers fail at composing facts in novel ways? This matters because systematic generalization is a hallmark of human reasoning.
both show recurrent depth buys generalization vanilla fixed-depth models lack
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Less is More: Recursive Reasoning with Tiny Networks
- VibeThinker-3B: Exploring the Frontier of Verifiable Reasoning in Small Language Models
- MobileLLM: Optimizing Sub-billion Parameter Language Models for On-Device Use Cases
- Recursive Language Models
- The Illusion of Thinking: Understanding the Strengths and Limitations of Reasoning Models via the Lens of Problem Complexity
- ZebraLogic: On the Scaling Limits of LLMs for Logical Reasoning
- Hierarchical Reasoning Model
- Reasoning Structure of Large Language Models
Original note title
a tiny two-layer network recursing on its latent reasoning state out-generalizes billion-parameter LLMs on hard puzzles — recursion not scale or hierarchy drives the gain