SYNTHESIS NOTE
TopicsMobilethis note

Does depth matter more than width for tiny language models?

Explores whether deep-and-thin architectures outperform wide-and-shallow ones at sub-billion scales, and why this might contradict larger-model scaling laws.

Synthesis note · 2026-05-03 · sourced from Mobile

Kaplan et al.'s scaling laws establish a roughly balanced relationship between model depth and width as parameters scale, with width growth often dominating at typical model sizes. MobileLLM demonstrates that this guidance breaks at the sub-billion-parameter scale relevant for on-device deployment. A deep-and-thin model structure outperforms balanced or wide-and-shallow alternatives, producing 2.7 percent and 4.3 percent accuracy boosts over preceding 125M and 350M state-of-the-art models respectively. The reason offered is that depth captures abstract concepts — composing simpler features into hierarchical representations through more layers — and at small scale the model has fewer raw parameters to spend, so making each one work harder through compositional depth pays back more than spreading them across wider layers.

This matters because it shows that scaling laws are regime-dependent rather than universal. The Kaplan results were derived from larger models where width and depth are both abundant; at the small scale where mobile deployment lives, the trade-offs reverse. The implication is that the architectural recipe for on-device LLMs is genuinely different from the recipe for cloud-scale LLMs — not just smaller, but structurally different. Can architecture choices improve inference efficiency without sacrificing accuracy? makes the same point at the inference-economics layer: vanilla scaling laws say nothing about deployment regimes.

The deeper lesson is methodological: scaling laws should always be qualified by the regime in which they were derived, and recommendations for sub-billion-parameter design should not be extrapolated downward from billion-plus-parameter studies. The right architecture for a 350M parameter model is not a scaled-down version of a 70B parameter model; it is a deep-and-thin model derived from the constraints of the small-scale regime. Can parallel architectures solve inherently sequential problems? gives a complementary reason to favor depth — some computations require sequential composition that width cannot supply at any scale.

Inquiring lines that read this note 111

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.

What structural factors drive popularity bias in recommendation systems? When does architectural design matter more than raw model capacity? Is embodied interaction necessary for language meaning and genuine agency? Can prompting inject entirely new knowledge into language models? How do transformer attention mechanisms implement memory and algorithmic functions? What role does compression play in language model capability and generalization? How does reasoning graph topology affect breakthrough insights and generalization? Do autonomous architecture discoveries follow predictable scaling laws? How does example difficulty affect learning efficiency in language models? Does model scaling alone produce compositional generalization without symbolic mechanisms? Why do continual learning scenarios trigger catastrophic forgetting and interference? Can inference-time compute substitute for scaling up model parameters? Does decoupling planning from execution improve multi-step reasoning accuracy? Why does finetuning cause catastrophic forgetting of model capabilities? Does parallel reasoning outperform sequential thinking under fixed compute budgets? Does recurrence enable reasoning capabilities that fixed-depth transformers cannot achieve? What limits mechanistic interpretability's ability to characterize models? What critical LLM failures do standard benchmarks hide? Do language models learn genuine linguistic structure or just surface patterns? Do language models develop causal world models or rely on statistical patterns? Can model routing outperform monolithic scaling as an efficiency strategy? How does sequence length affect sparsity tolerance in models? How do training priors constrain what context information can override? Why do semantic similarity and task relevance diverge in vector embeddings? How can identical external performance mask different internal representations? What capability tradeoffs emerge when scaling model reasoning abilities? Does AI fluency substitute for verifiable accuracy in human judgment? How does latent reasoning compare to verbalized chain-of-thought? Can next-token prediction alone produce genuine language understanding? What determines success in training models on multiple tasks? Should GUI agents use structured representations instead of raw pixels? When does optimizing for quality undermine the value of diversity? How should inference compute be adaptively allocated based on prompt difficulty? Why do reasoning models fail at systematic problem-solving and search? Why do benchmark improvements fail to reflect actual reasoning quality?

Related concepts in this collection 4

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
13 direct connections · 111 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

depth beats width for sub-billion parameter LLMs — contradicting Kaplan scaling laws because deep-and-thin captures abstract concepts better at small scale