Industry News

A DeepMind Paper Says One Model Can Replace the Two-Stage Ranking Pipeline. It Is Not in Google Search.

By Paul Lovell · September 14, 2026 · 4 min read

A paper involving Google DeepMind researchers — Autoregressive Ranking: Bridging the Gap Between Dual and Cross Encoders, arXiv 2601.05588 — has been getting attention in SEO circles this week. It's genuinely interesting work. It is also, emphatically, not an announcement that Google Search has changed.

Let's do the second part first, because it's the part that gets lost.

What this is not

Nothing in the paper states that Google Search uses this method. There's no deployment, no timeline, no product statement. It's a research paper, co-authored across Google DeepMind and university researchers, published to arXiv — the same category of artefact as thousands of other information retrieval papers.

Google publishes research constantly, most of which never ships, and the gap between "DeepMind researchers proved something about ranking architectures" and "Google is ranking your site this way" is enormous. Any advice that starts "because of BlockRank/ARR, you should now…" is inventing a bridge across that gap.

Read it as a signal of where the field's thinking is going. Don't read it as a ranking factor.

What the paper actually argues

Modern retrieval usually runs in two stages. A dual encoder embeds queries and documents separately and retrieves fast, because you can precompute document vectors. A cross encoder then reranks the shortlist by processing query and document together — much more accurate, far too expensive to run over a whole corpus.

Fast and rough, then slow and precise. That trade-off has shaped production search systems for years.

Autoregressive Ranking (ARR) proposes one fine-tuned LLM generating document identifiers token by token, ranking via beam search. One model, one stage.

The theoretical result is the substantial bit: the authors prove ARR's expressive capacity is strictly superior to a dual encoder. A dual encoder needs its embedding dimension to grow linearly with corpus size to represent arbitrary rankings; ARR can do it with a constant hidden dimension. That's a real statement about the ceiling of an architecture, not a benchmark win.

They also propose a training loss — SToICaL, using item-level reweighting and prefix-tree marginalisation to spread probability across valid docID tokens by ground-truth relevance.

Results are mixed rather than triumphant, which is a point in the paper's favour. On some benchmarks ARR performs comparably to a cross encoder and far better than a dual encoder. On ESCI shopping queries, one variant got worse at putting the right result first. Papers that report where their method underperforms are usually the ones worth reading.

Why it's worth knowing about anyway

The dual-encoder bottleneck is a real architectural constraint, and it's the reason embedding-based retrieval has the failure modes it does — semantically adjacent but wrong results, difficulty with fine distinctions, a ceiling on how much relevance structure a fixed-size vector can hold.

If the constraint can be removed by generating identifiers rather than comparing vectors, that's a direction with consequences for every retrieval system, including the RAG pipelines a lot of people are now building themselves. If you're constructing retrieval for an internal tool, this literature is directly applicable to you in a way it isn't to your rankings.

It's also a reasonable lens on Mueller's recent comment that mapping the old "position 1–10" onto generative systems is hard. Research moving toward single-model ranking over generated identifiers is research moving further away from a stable ranked list of ten blue links.

What to do about it

Nothing, to your site.

Read the paper if retrieval architecture interests you or if you're building RAG — it's a solid piece of work with an honest results section. Cite it accurately if you write about it: it's a paper, the authorship spans DeepMind and universities, and it makes no claim about production Search.

And be sceptical of anyone selling optimisation advice derived from it. The pattern is familiar — a Google-affiliated paper appears, gets compressed into a headline, and reappears a week later as a checklist. The paper doesn't support the checklist. It rarely does.

Sources