INQUIRING LINE

Instead of teaching an AI to reason after training, what if you built it in by looping its layers?

Does looped pretraining build reasoning more efficiently than supervised fine-tuning?

This explores whether building reasoning into a model's architecture and pretraining, by looping the same layers repeatedly, produces better or cheaper reasoning than teaching it afterward by fine-tuning on worked examples.


This explores whether building reasoning into a model's architecture and pretraining, by looping the same layers repeatedly, beats teaching it afterward with supervised fine-tuning (SFT). The corpus has no head-to-head test of the two. The separate pieces do point the same way, though. Looping looks better on the quality of reasoning. On cost, the evidence covers parameter count but not compute.

The looped side is strongest on parameter efficiency. Ouro's 1.4B–2.6B models match 12B baselines by doing reasoning inside the pretraining loop, not by storing more knowledge (Can reasoning be learned during pretraining rather than after?). The wider looped-model work explains why. Re-applying layers gives a model state tracking and compositional generalization that adding parameters doesn't, and convergence of the loop gives a natural signal for when to stop (Can models learn by looping instead of growing larger?). A side benefit is that Ouro's intermediate latent states line up with its final outputs. That makes its reasoning more faithful than a chain-of-thought trace that can drift from the answer.

SFT's problem is that it can raise scores without building the skill. It improves final-answer accuracy while cutting Information Gain per reasoning step by 38.9 percent, so models get to correct answers through post-hoc rationalization instead of real inferential steps (Does supervised fine-tuning improve reasoning or just answers?). Three separate tests back this up. After fine-tuning, cutting the reasoning short, paraphrasing it, or swapping in filler leaves the answer unchanged more often, which means the written reasoning is decoration (Does fine-tuning disconnect reasoning steps from final answers?). Chain-of-thought skills learned this way also fall apart predictably once tasks shift in length, format, or type. The result is fluent reasoning-shaped text without valid logic behind it (Does chain-of-thought reasoning actually generalize beyond training data?).

The comparison may be slightly off, because most of the evidence says post-training isn't where reasoning is created. Base models already hold latent reasoning that five different methods can elicit (Do base models already contain hidden reasoning ability?). RL post-training mostly teaches a model when to deploy reasoning, not how (Does RL post-training create reasoning or just deploy it?). If that's right, SFT is a weak way to add capability, and the real contest is over what happens during pretraining. Looping is one route. Rewarding chain-of-thought during pretraining is another, and it lifted math and science benchmarks by about 19 percent (Can chain-of-thought reasoning be learned during pretraining itself?). Analysis of 5 million pretraining documents adds that reasoning generalizes from broad procedural knowledge in the pretraining data, unlike facts, which need memorization (Does procedural knowledge drive reasoning more than factual retrieval?). Even within post-training, SFT isn't the strongest option. Reinforcement learning that rewards explanation quality embeds domain knowledge better than SFT does (Can reinforcement learning embed domain knowledge more effectively than supervised fine-tuning?).

The corpus doesn't say whether looping is cheaper in compute. Ouro's win is measured in parameters, and every extra loop costs another pass through the layers. Nothing here compares total training or inference cost against an SFT pipeline. What the corpus does support is narrower. Looping builds reasoning that is more faithful and less dependent on model size, while SFT tends to buy benchmark points and leaves the reasoning steps less connected to the answers.


Sources 10 notes

Can reasoning be learned during pretraining rather than after?

Ouro's 1.4B–2.6B models match 12B baselines by performing reasoning during pretraining via iterative latent loops, not by storing more knowledge. Their intermediate latent states align strongly with final outputs, making them more faithful than divergent chain-of-thought traces.

Can models learn by looping instead of growing larger?

Models that re-apply layers in recurrent depth outperform larger feedforward networks on reasoning tasks. This works because recursion enables state tracking and compositional generalization that parameter scaling alone cannot achieve, with convergence signals providing natural halting.

Does supervised fine-tuning improve reasoning or just answers?

Supervised fine-tuning improves final-answer accuracy on benchmarks but cuts Information Gain by 38.9 percent, meaning models generate correct answers through post-hoc rationalization rather than genuine inferential steps. Standard metrics miss this degradation because they only measure final correctness.

Does fine-tuning disconnect reasoning steps from final answers?

Three faithfulness tests show fine-tuned models generate reasoning chains that less reliably influence final outputs. Early termination, paraphrasing, and filler substitution all produce invariant answers more often after fine-tuning, suggesting reasoning becomes performative rather than functional.

Does chain-of-thought reasoning actually generalize beyond training data?

DataAlchemy experiments show CoT fails systematically under distributional shifts in task, length, and format. Models produce fluent but logically inconsistent reasoning — imitating reasoning form without valid underlying logic.

Show all 10 sources
Do base models already contain hidden reasoning ability?

Five independent mechanisms—RL steering, critique fine-tuning, decoding changes, SAE feature steering, and RLVR—all elicit reasoning already present in base model activations. Post-training selects rather than creates reasoning; the bottleneck is elicitation, not capability acquisition.

Does RL post-training create reasoning or just deploy it?

Evidence shows base models already contain reasoning capability in latent form; RL training optimizes deployment timing rather than capability creation. Hybrid models recover 91% of performance gains by routing tokens only, and activation vectors for reasoning strategies pre-exist before any RL.

Can chain-of-thought reasoning be learned during pretraining itself?

RLP treats CoT as exploratory action during pretraining, using log-likelihood improvement as verifier-free reward. Applied to Qwen3-1.7B and Nemotron-Nano-12B, the method improves math and science benchmarks substantially, suggesting reasoning can be planted earlier in training.

Does procedural knowledge drive reasoning more than factual retrieval?

Analysis of 5 million pretraining documents shows reasoning relies on broad, transferable procedural knowledge from diverse sources, unlike factual recall which depends on narrow, document-specific memorization of target facts.

Can reinforcement learning embed domain knowledge more effectively than supervised fine-tuning?

RLAG rewards both answer accuracy and explanation rationality by cycling between augmented and unaugmented generation, progressively internalizing coherent knowledge structures. This outperforms SFT because it prioritizes reasoning quality over token-level correctness.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.