Can latent reasoning close the scaling gap with explicit chain-of-thought?
Latent CoT methods match explicit CoT on small models but fall behind at scale. Can supervised looping bridge this gap? The stakes matter for efficient reasoning at 3B parameters and beyond.
The paper starts from a scaling problem: latent CoT methods "already match CoT accuracy" on small backbones like GPT-2, but "underperform explicit CoT beyond 1B parameters, and the gap widens with scale." Its answer is LOTUS, which the authors call, "to our knowledge, the first latent-CoT method to bridge the gap to explicit CoT at the 3B scale." On Llama-3.2-3B-Instruct it closes the in-domain gap on GSM8K, surpasses CoT on the out-of-domain average, and cuts thought-phase latency by 2.5×. The abstract reports a 2.5× to 6.9× cut across CoT formats "from compact math expressions to natural language."
The recipe is deliberately simple. A looped padded Transformer processes K latent blocks in parallel for R iterations, and each latent position gets a cross-entropy loss on its gold CoT-step token, "similar to explicit CoT supervision." The cost argument is that explicit CoT of length N needs N sequential model evaluations, while latent blocks condense many steps into fewer evaluations. Ablations reportedly show that the looped backbone, the parallel gold CoT supervision, and sufficient block width and loop depth are each necessary. A representation analysis adds that the latents are "transparent": the gold CoT is recoverable by direct readout, they put graded probability on unseen but valid reasoning chains rather than one memorized trace, and the step and answer losses contribute complementary structure.
Against the vault's latent-reasoning thread, this is a scaling result more than a new mechanism. It contrasts with Can models reason without generating visible thinking tokens?, which stresses avoiding specialized training data, because LOTUS trains against the gold CoT tokens. It sits beside Can reasoning be learned during pretraining rather than after?, where looping is baked into pretraining. LOTUS instead attaches supervised looping to an existing 3B instruct model. Both report latents that stay legible against the output. The tractability worry in Can continuous thoughts have tractable likelihoods for sampling and scoring? bears on it too: LOTUS also leans on explicit CoT as its teacher. The excerpt does not say whether it keeps sampling or likelihood scoring over latents. The readout result gives partial support to Can models reason without generating visible thinking steps?, with a qualification. Reasoning need not be decoded token by token, but these latents are trained to be readable as verbal steps.
The excerpt leaves a lot open. It gives no accuracy figures, baselines, or margins, and it does not name the out-of-domain benchmarks. It does not say which CoT format yields the 2.5× end of the latency range and which the 6.9× end, and it does not test scales above 3B, though the gap is said to widen with scale. The authors flag that evaluation is on math benchmarks, as in prior latent work, and that transfer to other domains "remains an open direction." At the strength the evidence allows, the claim is that the latent-versus-explicit gap is not fixed beyond 1B, at least for math and with gold CoT supervision available. Whether latent reasoning can stand apart from verbal traces is not addressed.
Inquiring lines that read this note 5
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.
Can inference-time compute effectively substitute for model scale? Why does adding new knowledge through fine-tuning degrade existing capabilities? Can diffusion models match autoregressive performance on language generation tasks? How do neural networks achieve compositional generalization at scale? Can reasoning scale in latent space without tokens?Related concepts in this collection 5
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Can models reason without generating visible thinking tokens?
Explores whether intermediate reasoning must be verbalized as text tokens, or if models can think in hidden continuous space. Challenges a foundational assumption about how language models scale their reasoning capabilities.
contrasts: that thread scales latent reasoning without specialized data; LOTUS closes the gap at 3B by supervising latents on gold CoT tokens
-
Can reasoning be learned during pretraining rather than after?
Does building iterative computation into the pretraining phase itself allow language models to develop reasoning before post-hoc fine-tuning? And if so, does latent reasoning align better with outputs than explicit chain-of-thought?
parallel result: looping in pretraining there, supervised looping on a 3B instruct model here; both report legible latents
-
Can continuous thoughts have tractable likelihoods for sampling and scoring?
Most latent-reasoning methods discard the likelihood and sampling properties that made textual chain-of-thought trainable. Can normalizing flows recover those affordances in continuous thought space while preserving efficiency?
shares the dependence on explicit CoT as teacher; differs in method and evaluation domain (code there, math here)
-
Can models reason without generating visible thinking steps?
Do machine reasoning systems actually require verbalized chains of thought, or can they solve complex problems through hidden computation? This challenges how we measure and understand reasoning.
supports the claim that verbalized steps are not needed at inference, while these latents are trained toward verbal targets
-
Why does latent chain-of-thought fail so easily in training?
Explores why latent reasoning is fragile compared to textual chain-of-thought, focusing on how outcome-only supervision creates gradient starvation and representational drift in learned reasoning trajectories.
Evidence for: explains why dense per-position supervision works — outcome supervision starves gradients and lets the latent space drift; effective supervision needs dense trajectory signal
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Bridging the Gap Between Latent and Explicit Reasoning with Looped Transformers
- Reasoning Beyond Chain-of-Thought: A Latent Computational Mode in Large Language Models
- Latent Reasoning with Normalizing Flows
- SoftCoT: Soft Chain-of-Thought for Efficient Reasoning with LLMs
- What Makes Effective Supervision in Latent Chain-of-Thought? An Information-Theoretic Analysis
- From Explicit CoT to Implicit CoT: Learning to Internalize CoT Step by Step
- Scaling up Test-Time Compute with Latent Reasoning: A Recurrent Depth Approach
- Towards Reasoning Era: A Survey of Long Chain-of-Thought for Reasoning Large Language Models
Original note title
parallel gold-CoT supervision on a looped Transformer bridges the latent-to-explicit CoT gap at 3B scale while cutting thought-phase latency