Table of Contents
Fetching ...

Deep Improvement Supervision

Arip Asadulaev, Rayan Banerjee, Fakhri Karray, Martin Takac

TL;DR

The paper tackles the efficiency and reliability of iterative reasoning in tiny TRMs by reframing latent reasoning as diffusion-guided policy improvement and introducing Deep Improvement Supervision (DIS). By supplying explicit, stepwise targets via a discrete diffusion process, DIS converts long-horizon credit assignment into tractable supervised learning, eliminating halting and dramatically reducing forward passes. Empirical results on N-Queens and ARC show DIS matching or surpassing TRM baselines with far fewer steps and smaller parameter counts, including notable ARC performance with 0.8M parameters. The work demonstrates that principled, stepwise supervision can enable small models to perform complex reasoning tasks previously dominated by large LLMs, with practical efficiency benefits.

Abstract

Recently, it was shown that small, looped architectures, such as Tiny Recursive Models (TRMs), can outperform Large Language Models (LLMs) on complex reasoning tasks, including the Abstraction and Reasoning Corpus (ARC). In this work, we investigate a core question: how can we further improve the efficiency of these methods with minimal changes? To address this, we frame the latent reasoning of TRMs as a form of classifier-free guidance and implicit policy improvement algorithm. Building on these insights, we propose a novel training scheme that provides a target for each loop during training. We demonstrate that our approach significantly enhances training efficiency. Our method reduces the total number of forward passes by 18x and eliminates halting mechanisms, while maintaining quality comparable to standard TRMs. Notably, we achieve 24% accuracy on ARC-1 with only 0.8M parameters, outperforming most LLMs.

Deep Improvement Supervision

TL;DR

The paper tackles the efficiency and reliability of iterative reasoning in tiny TRMs by reframing latent reasoning as diffusion-guided policy improvement and introducing Deep Improvement Supervision (DIS). By supplying explicit, stepwise targets via a discrete diffusion process, DIS converts long-horizon credit assignment into tractable supervised learning, eliminating halting and dramatically reducing forward passes. Empirical results on N-Queens and ARC show DIS matching or surpassing TRM baselines with far fewer steps and smaller parameter counts, including notable ARC performance with 0.8M parameters. The work demonstrates that principled, stepwise supervision can enable small models to perform complex reasoning tasks previously dominated by large LLMs, with practical efficiency benefits.

Abstract

Recently, it was shown that small, looped architectures, such as Tiny Recursive Models (TRMs), can outperform Large Language Models (LLMs) on complex reasoning tasks, including the Abstraction and Reasoning Corpus (ARC). In this work, we investigate a core question: how can we further improve the efficiency of these methods with minimal changes? To address this, we frame the latent reasoning of TRMs as a form of classifier-free guidance and implicit policy improvement algorithm. Building on these insights, we propose a novel training scheme that provides a target for each loop during training. We demonstrate that our approach significantly enhances training efficiency. Our method reduces the total number of forward passes by 18x and eliminates halting mechanisms, while maintaining quality comparable to standard TRMs. Notably, we achieve 24% accuracy on ARC-1 with only 0.8M parameters, outperforming most LLMs.

Paper Structure

This paper contains 21 sections, 5 theorems, 29 equations, 7 figures, 1 table.

Key Result

Proposition 4.1

Let $\mathcal{L}(w)=-\log\pi_w(y^\star)$ be the cross‑entropy loss for the correct class. Then $\frac{d}{dw}\mathcal{L}(w)<0$ (i.e., the loss strictly decreases as $w$ increases) if and only if Moreover, $\frac{d}{dw}\mathcal{L}(w)=\mathbb{E}_{a\sim \pi_w}[\Delta\ell[a]]-\Delta\ell[y^\star]$ and $\frac{d^2}{dw^2}\mathcal{L}(w)=\mathrm{Var}_{a\sim\pi_w}[\Delta\ell[a]]\ge 0$.

Figures (7)

  • Figure 1: Blueprint of the discrete diffusion process on the ARC. Starting from the input x, following timestep $t$, we generate diffusion steps to the target y chollet2019measure.
  • Figure 2: DIS model architecture. Algorithm starts with the embedded input question $\mathbf{x}$, initial embedded answer $\mathbf{y}$, and latent state $z$. For up to $n$ improvement steps, it tries to improve its answer $\mathbf{y}$ by simulating a discrete diffusion process, addressing any errors from its previous answer in an parameter-efficient manner.
  • Figure 3: Pseudocode for reasoning with deep improvement supervision. With $T=1$ (as in our medium settings), we avoid the large (no-grad) cycle and significantly reduce computational time.
  • Figure 4: N-Queens reasoning problem example. Left is input and right is target solution.
  • Figure 5: Accuracy curves on N-Queens problem.
  • ...and 2 more figures

Theorems & Definitions (8)

  • Proposition 4.1: Advantage Margin Condition
  • Proposition 4.2: Guaranteed Improvement
  • Proposition 1.1: Advantage Margin Condition
  • proof
  • Proposition 1.2: Discrete Lyapunov Contraction
  • proof
  • Proposition 1.3: Guaranteed Improvement
  • proof