A tiny AI that loops on its own thinking beat models a thousand times its size — so what does size really measure?
How does requential coding measure true simplicity without parameter count inflation?
This explores a question whose exact term ('requential coding') the corpus doesn't name directly — so I'm reading it as the deeper thing it's reaching for: how do we judge a model's *true* simplicity or capability by something other than counting parameters, since parameter count turns out to be a bad proxy for both.
This explores how to measure genuine simplicity in a model when raw parameter count stops being trustworthy. The collection's clearest answer is that recursion — reapplying the same small computation instead of adding more weights — is where the real economy lives. A seven-million-parameter two-layer network that loops on its own latent reasoning state beat billion-parameter language models on ARC-AGI puzzles using roughly 0.01% of their parameters Can tiny recursive networks outperform massive language models?, and looped architectures more broadly get their reasoning gains from iterated depth rather than scale, with the loop's own convergence acting as a natural stopping signal Can models learn by looping instead of growing larger?. The lesson: a system can be 'small' in weights but deep in the computation it performs, and parameter count can't see that difference.
Why count fails as a simplicity measure shows up from a second angle — two models can post identical accuracy while one has clean internal structure and the other is fractured and brittle, invisible to standard metrics until perturbation or distribution shift exposes it Can models be smart without organized internal structure?. So neither performance nor parameter count captures the thing you actually care about. If you want to locate simplicity, you have to look at organization: neural networks tend to carve compositional tasks into isolated modular subnetworks, and you can ablate one subroutine without touching the others — a structural kind of simplicity you'd never read off a parameter total Do neural networks naturally learn modular compositional structure?.
The corpus also reframes where capability even comes from. Frontier-level reasoning turns out to be a property of the post-training pipeline — curriculum and verifiable-reward RL — not of parameter scale, with a 3B model matching far larger systems on checkable tasks Can small models match frontier reasoning without massive scale?. And for tiny models specifically, depth beats width: deep-and-thin architectures compose abstract concepts through layers and outperform balanced designs at the same parameter budget, directly contradicting the assumption that width (more parameters spread sideways) buys you more Does depth matter more than width for tiny language models?.
There's a compression-based reading of simplicity too, at the level of the reasoning trace rather than the weights. Models internally rank the tokens in a reasoning chain by functional importance — symbolic computation gets preserved, grammar and meta-discourse get pruned first — and students trained on those pruned chains outperform students trained on verbose frontier compressions Which tokens in reasoning chains actually matter most?. Related, Markov-style memoryless reasoning contracts a problem into a form where each step depends only on the current state, shedding accumulated history that bloats the chain without changing the answer Can reasoning systems forget history without losing coherence?. Both say the same thing: true simplicity is what survives when you strip everything that doesn't change the output.
The reader-worth-knowing twist is the theoretical ceiling underneath all this — a single finite-size transformer is provably Turing-complete, able to compute any computable function given the right prompt, meaning raw capacity was never the bottleneck Can a single transformer become universally programmable through prompts?. If capacity is effectively unbounded regardless of size, then 'how many parameters' is almost the wrong question entirely; the honest measure of simplicity is how much reusable computation a model wrings out of a fixed budget — through recursion, depth, and modular structure — not how few weights it happens to have.
Sources 9 notes
A 7M-parameter two-layer network recursing on its latent reasoning state reached 45% on ARC-AGI-1, beating larger LLMs with 0.01% of their parameters. The gains come from recursion itself, not scale or hierarchical architecture.
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.
Models trained with SGD can contain all the linearly decodable features needed for a task while maintaining fundamentally broken internal organization. This makes them vulnerable to perturbation and distribution shift invisible to standard evaluation metrics.
Pruning experiments reveal that neural networks implement compositional subroutines in isolated subnetworks, with ablations affecting only their corresponding function. Pretraining substantially increases the consistency and reliability of this modular structure across architectures and domains.
A 3B model trained with curriculum SFT and multi-domain RL reaches 94.3 AIME26 and 80.2 LiveCodeBench scores matching much larger systems. The result is bounded to verifiable tasks with checkable ground truth, where RL can provide clean reward signals.
Show all 9 sources
MobileLLM shows deep-and-thin architectures yield 2.7–4.3% accuracy gains over balanced designs at 125M–350M scale by composing abstract concepts through layers rather than spreading parameters across width.
Greedy likelihood-preserving pruning reveals six functional token categories; symbolic computation tokens are preferentially preserved while grammar and meta-discourse are pruned first. Student models trained on these pruned chains outperform those trained on frontier-model compression.
Atom of Thoughts decomposes problems into DAGs and contracts them iteratively, ensuring each state depends only on the current problem—not prior steps. This memoryless approach eliminates historical baggage that bloats reasoning while maintaining answer equivalence.
Research proves a single finite-size transformer exists that can compute any computable function given the right prompt, achieving complexity bounds nearly matching unbounded models. However, standard training rarely produces models that learn to implement arbitrary programs this way.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- Hierarchical Reasoning Model
- The Illusion of Thinking: Understanding the Strengths and Limitations of Reasoning Models via the Lens of Problem Complexity
- Break It Down: Evidence for Structural Compositionality in Neural Networks
- Less is More: Recursive Reasoning with Tiny Networks
- MobileLLM: Optimizing Sub-billion Parameter Language Models for On-Device Use Cases
- VibeThinker-3B: Exploring the Frontier of Verifiable Reasoning in Small Language Models
- Faith and Fate: Limits of Transformers on Compositionality
- Performative Thinking? The Brittle Correlation Between CoT Length and Problem Complexity