Build1 distinct publisher3 min readPublished
Geiping's Huginn improves on reasoning benchmarks by looping a latent block instead of emitting chain-of-thought tokens, holding weights at 3.5 billion while per-token compute rises about fourteenfold.
The Engineer · Build desk

Follow any of these and your For You feed starts watching them — no settings page required.
product
Liability for a runaway agent lands on whoever configured its permissions1 distinct publisher
build
Anthropic's protein run is checkable, which is rarer than the 26.8% hit rate2 distinct publishers
invest
OpenAI rates GPT-6 Astra capable of hacking hardened systems without human guidance1 distinct publisher
invest
Nvidia's $12.93 billion Hugging Face deal works out to about $4,300 per shared model1 distinct publisher
Compiled by The EngineerSomething wrong?How this is made
Fifty billion here is a FLOP count measuring compute spent, distinct from any claim about capability. The paper reports gains up to a computation load equivalent to 50 billion parameters from a model whose weights total 3.5 billion [3][2]. Assume forward-pass cost scales roughly with parameter count and the ratio falls out: 50 divided by 3.5 is about 14 [1]. The deep setting spends roughly fourteen trips through the recurrent block before it emits a token.
The saving here is in memory footprint; arithmetic cost is unaffected. At two bytes per parameter, 3.5 billion weights occupy about 7 GB, and a 50 billion parameter model at the same precision needs about 100 GB [2]. So the offer is to keep a small model resident and buy depth at inference time instead of keeping a large model resident and paying for one pass through it. That helps a team whose binding constraint is what fits on the card, and does nothing for a team whose constraint is tokens per second.
The loop is serial by construction. The recurrent unit iteratively processes and updates its hidden state [12], so iteration fourteen cannot begin until thirteen has finished. The batch dimension still parallelises; depth does not. That is why the inference features the authors list matter more than the equivalence figure. Per-token adaptive compute is the one to read closely: the paper claims recurrent depth models support it naturally, along with self-speculative decoding and KV-cache sharing, where non-recurrent models need substantial tuning and research effort to get the same behaviour [7]. If adaptive compute holds up in practice, the deep unroll is spent only on the tokens that need it and the average per-token bill sits well under fourteen. If it does not, you pay fourteen everywhere.
What makes an arbitrary test-time depth legal at all is the training recipe. The recurrent block is run for a randomly sampled number of iterations during pretraining [5], so the model has seen a distribution of depths rather than one fixed stack. The authors motivate the whole design by calling it wasteful to require that expensive internal reasoning always be projected down to a single verbalised next token [11].
For the fourteenfold number to mean anything on a specific workload, the gains have to come from depth rather than from intermediate state you would want to reuse, cache across turns, or read. The supplied paper text does not tabulate per-benchmark scores, iteration counts, or wall-clock latency behind the equivalence claim, describing the improvement only as sometimes dramatic [14], so the shape of the curve between one iteration and fourteen is not something you can plan capacity against yet. The authors are candid that the underlying idea keeps coming back, having been rediscovered as recurrent networks, diffusion models, and looped transformers [9], which is a reasonable way to say that the novelty is the training run rather than the loop.
The decision this changes is narrow and real. Where weight memory binds and latency has slack, depth is now a purchasable substitute for parameters, at 3.5 billion resident weights and public code [10].
Ranked by verification strength, evidence, and original report placement.
The paper studies a language model architecture that scales test-time computation by implicitly reasoning in latent space, working by iterating a recurrent block and thereby unrolling to arbitrary depth at test time, in contrast to mainstream reasoning models that scale compute by producing more tokens.
The recurrent unit runs in a loop, iteratively processing and updating its hidden state, enabling computations to be carried on indefinitely, and recurrent layers let a transformer perform arbitrarily many computations before emitting a token.
The authors scaled a proof-of-concept model to 3.5 billion parameters and 800 billion tokens of pretraining data.
The proposed transformer architecture is built on a latent depth-recurrent block that is run for a randomly sampled number of iterations during training.
The paper is authored by Jonas Geiping, Sean McLeish, Neel Jain, John Kirchenbauer, Siddharth Singh, Brian R. Bartoldson, Bhavya Kailkhura, Abhinav Bhatele and Tom Goldstein.
The paper states that recurrent depth models naturally support a number of inference-time features that require substantial tuning and research effort in non-recurrent models, specifically per-token adaptive compute, (self)-speculative decoding, and KV-cache sharing.
Distinct publishers with included, body-backed reporting in this cluster.
1 article · September 6, 2026
Evidence-backed comparisons of source perspectives and observed adoption signals. Read the methodology
Which Builder, Operator, and Investor concerns the observed source mix emphasized—not a truth score.
Evidence, demonstrated adoption, hype gap, incentives, and confidence are assessed independently, each on its own current evidence. How these are measured.
One preprint, headline number unshown
Everything rests on a single preprint written by the group that built the model, and its strongest number, a compute load equivalent to 50 billion parameters, arrives with no benchmark table, loop count or timing behind it in the text we can read. What keeps the score off the floor is that the checkpoint and the training code are both public, so the claim is checkable by anyone willing to spend the GPU hours.
Weights posted, users unseen
The only uptake visible is the authors' own posting: a checkpoint under tomg-group-umd and the recurrent-pretraining repository. No third-party benchmark run, download figure or derivative fine-tune appears anywhere in this reporting, so the score credits artifacts that exist rather than people using them.
Abstract ahead of the shown work
"Sometimes dramatically" and "equivalent to 50 billion parameters" are the abstract's phrasing; the second section is markedly more careful, hoping rather than claiming that latent recurrence reaches reasoning that defies verbalization. The gap is modest and largely one of sequencing, since the equivalence is stated well before anything we can read shows the benchmarks it came from.
Builders grading their own architecture
This is nine authors describing the architecture they designed, on a preprint server, with no peer review or outside replication in view. Releasing both weights and training code cuts against the usual pressure, since a claim anyone can rerun is expensive to overstate, but the framing and the choice of which numbers to print remain entirely theirs.
Mechanism clear, measurement thin
One primary source, generous about how the architecture works and sparing about what it scores, with nothing to check it against. We are confident describing the depth-recurrent design and its serving profile, and much less confident about the size of the reasoning gain.