explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

learn

pathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsdictionaryagi trackerranks

company

aboutvisionmissionteaminstructorscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportcontactprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • TL;DR
  • Why Recursion Re-entered the Conversation
  • HRM in One Page
  • What TRM Kept, What TRM Removed
  • Chain-of-Thought vs Latent Recursion
  • Why ARC-Style Tasks Fit This Direction
  • Engineering Implications
  • Limits and Open Questions
  • Practical Positioning in 2026
  • Related explainx.ai Reads
  • Source Notes
← Back to blog

explainx / blog

Recursive Reasoning in 2026: HRM, TRM, and Why Inference-Time Recursion Matters

A technical guide to Hierarchical Reasoning Models (HRM) and Tiny Recursive Models (TRM): architecture, training tricks, ARC-AGI results, and what recursive inference changes for reasoning systems.

May 7, 2026·5 min read·Yash Thakker
Recursive ReasoningHRMTRMARC-AGIInference-Time ComputeAI ResearchReasoning Models
go deep
Recursive Reasoning in 2026: HRM, TRM, and Why Inference-Time Recursion Matters

Update — August 14, 2026: Pathway shipped a direct successor to this line of research — BDH-CQ, a 150M-parameter "post-Transformer" model claiming 11x cheaper ARC-AGI-1 reasoning than GPT-5.6 Luna using the same latent-space-over-token-space reasoning approach described below.

Most AI scaling conversations still default to one strategy: bigger models, more data, longer context. HRM and TRM added a different axis in 2025: more recursive computation at inference time without proportionally increasing parameter count.

This post summarizes the key ideas from recent HRM/TRM research and the Decoded discussion transcript you shared, then maps those ideas to practical model-design choices.

Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.


TL;DR

Recursive reasoning HRM TRM explained — a small node brightening through repeated loops versus one dim single pass on a larger node

table · 2 cols
QuestionShort answer
What changed?HRM/TRM showed that small models can gain strong reasoning behavior via recursive latent refinement loops.
Why was it interesting?Reported ARC-style results were strong relative to model size and training data.
Core mechanismReuse the same weights repeatedly over internal states (z, z_low, or equivalent) at inference and training.
HRM key ideaTwo-timescale recursion (high-level + low-level modules).
TRM key ideaSimplify to one tiny shared network and keep recursive refinement + deep supervision.
Big takeawayInference-time recursion is a meaningful compute axis, not just parameter scaling.

Primary sources:

  • HRM paper: arXiv:2506.21734
  • TRM paper (“Less is More”): arXiv:2510.04871
  • ARC benchmark context: ARC Prize

Why Recursion Re-entered the Conversation

A transformer forward pass is highly parallel and efficient for training, but many reasoning tasks are effectively multi-step algorithms. If the task is hard to compress into one pass, performance can bottleneck even when the model is large.

In the transcript, this is framed as a gap between:

  • Token-space iteration (chain-of-thought and tool calls)
  • Latent-space iteration (internal recursive state updates)

That distinction matters. Token-space traces are useful, but they are constrained by discrete outputs and supervision artifacts. Latent recursion can keep iterative computation inside a continuous state space.


HRM in One Page

Hierarchical Reasoning Model (HRM) proposes two interacting recurrent modules:

  • A high-level module for slower abstract updates
  • A low-level module for faster local computation

At a high level, training repeatedly:

  1. Initializes internal states
  2. Runs nested recursion loops
  3. Applies a supervised objective
  4. Repeats refinement

Reported results in the paper include strong performance on reasoning-heavy tasks (including ARC-style settings) with a relatively small parameter budget and limited training samples.

Reference: Wang et al., 2025


What TRM Kept, What TRM Removed

Tiny Recursive Model (TRM) keeps the core recursive refinement intuition but simplifies architecture and training design.

From the paper’s framing:

  • Replace dual-network hierarchy with a single tiny shared network
  • Keep recursive latent/output refinement
  • Use deep supervision-style training across refinement iterations

The paper reports that this simplified setup outperformed HRM on key ARC-AGI metrics while using fewer parameters.

Reference: Jolicoeur-Martineau, 2025


Chain-of-Thought vs Latent Recursion

A useful way to reason about the difference:

table · 3 cols
ApproachIteration mediumTypical failure mode
Chain-of-thoughtTokens (external text)Verbose traces, brittle decomposition, inherited token errors
Tool-use loopsTokens + external API callsBounded by tool availability and prior knowledge
HRM/TRM recursionContinuous latent stateTraining stability and optimization details become central

This does not make chain-of-thought obsolete. It reframes it as one recursion interface, not the only one.


Why ARC-Style Tasks Fit This Direction

ARC-style problems emphasize abstraction and stepwise transformation. They are often hard to solve via a single direct mapping from input to output.

Recursive latent refinement is naturally aligned with these tasks because it allows:

  • Iterative hypothesis updates
  • Intermediate state correction before final output
  • More compute depth without proportional parameter growth

That is the core reason these papers attracted attention: not just scoreboards, but a different compute strategy.


Engineering Implications

If you are building reasoning systems, these papers suggest a practical design checklist:

  1. Separate model capacity from compute depth Capacity (parameters) and iterative depth (recursion steps) should be tuned independently.

  2. Treat recursion loops as first-class hyperparameters Refinement steps, supervision depth, and state-reset behavior can matter as much as width/depth.

  3. Benchmark for algorithmic generalization, not only text fluency Include tasks where single-pass pattern matching fails.

  4. Expect hybrid architectures General-purpose pretrained models plus compact recursive reasoning heads/modules is a plausible near-term direction.


Limits and Open Questions

Important caveats:

  • HRM/TRM are not drop-in replacements for broad conversational LLM products.
  • Reported gains are strongest on specific reasoning benchmarks; transfer breadth remains an open question.
  • Training dynamics (especially truncated backprop choices and recursion schedules) are still under active study.
  • Benchmark-specific optimization risk always exists; cross-domain validation is essential.

Practical Positioning in 2026

The most realistic interpretation is not “small recursive models replace frontier LLMs.”

It is: recursive inference is a complementary scaling law. The field can continue scaling pretrained world models while adding stronger latent recursive computation where algorithmic reasoning is the bottleneck.

That matches where many labs are heading across agent systems and reasoning stacks: combine broad priors with targeted iterative computation.


Related explainx.ai Reads

  • Pathway's BDH-CQ: 150M model, 11x cheaper reasoning than GPT-5.6
  • DeepSeek V4 Flash 0731 scores 89% on ARC-AGI at $0.02/task
  • AI Benchmarks in 2026
  • LLM Context Window Explained (2026)
  • What Are Agent Skills? Complete Guide
  • AI Models Hallucinate: Why and How to Catch It

Source Notes

This article is based on:

  • Your provided Decoded transcript content
  • HRM primary paper: arXiv:2506.21734
  • TRM primary paper: arXiv:2510.04871
  • ARC benchmark site: arcprize.org

Paper results and benchmark standings can change with revised evaluations, replications, and new benchmark versions. Verify against the latest arXiv revisions and ARC Prize updates.

Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Aug 24, 2026

DeepMind Recirculation: Better Gemma 3 Reasoning Without Changing Its Weights

Google DeepMind's Recirculation paper feeds contextualized deep-layer activations back into shallower layers at inference time. The method reports large Gemma 3 gains without changing the base weights, but it serializes prefill and the adaptive version still trains a small mixing network.

Aug 26, 2026

IBM Granite 4.2: Open Reasoning Models With Agentic RL

IBM's Granite 4.2 family (Aug 25, 2026) is the company's first dense reasoning line with a thinking/non-thinking switch, 512K-token training, and agentic reinforcement learning on the 8B and 30B sizes. explainx.ai maps who should run Granite locally, how it compares to Qwen and Nemotron for agents, and what the published training recipe actually changes.

Aug 18, 2026

When Answers Get Cheap, Trust Becomes the Job

On August 17, 2026, a working mathematician said he was leaving academia because LLMs had started solving problems he had lived with for years — and because checking those answers still took days. This is a reflection on what that split means: discovery got cheap; trust did not.