TLDRocket
Sign in

Accelerating Gemini Nano models on Pixel with frozen Multi-Token Prediction

Google Research

Google made on-device AI on Pixel phones faster by bolting a prediction head onto its already-trained Gemini Nano models. It speeds up things like notification summaries by 50%+ without retraining anything or draining your battery faster.

Based on reporting by Google Research — read the original for the full story.

Summary, retelling and take written by AI under human oversight; images are AI-generated illustrations. How we work · Report an error

Google Research just published details on a clever fix for a problem anyone who's used on-device AI features has probably felt without knowing it: that slight lag before your phone finishes summarizing notifications or proofreading a text. The culprit is autoregressive generation, the standard way language models work, spitting out one token at a time. On a server farm that's fine. On a Pixel with a fixed energy budget and limited RAM, it's a bottleneck that chews through battery and slows everything down.

The fix is called Multi-Token Prediction, or MTP, and Google's approach here is notably pragmatic. Rather than train a whole new drafting model to guess ahead — the usual speculative decoding trick, where a small model proposes tokens and a big model verifies them — Google took its already-deployed Gemini Nano v3 model, froze its weights entirely, and bolted on a lightweight transformer head trained to predict several tokens ahead using the main model's own internal activations. No retraining the backbone, no risk of messing with safety alignment or capability, and because rejected drafts just get discarded, output stays bit-for-bit identical to what the unmodified model would have produced.

The more interesting engineering choice is what Google calls a zero-copy architecture. Standalone drafter models typically have to build and maintain their own memory cache as they process context, which on a phone means paying a "double tax" in RAM. Google's MTP head instead cross-attends directly into the main model's existing key-value cache, borrowing context instead of duplicating it. That saved roughly 130MB per instance compared to a standalone drafter of similar size — a meaningful chunk of memory on a device that's also running your camera app and everything else.

The payoff, according to Google, is speedups of 50% or more on Pixel 9 for tasks like AI Notification Summaries and Proofread, now rolled out to Pixel 9 and 10. Because the drafter head can see the main model's rich internal state rather than treating it as a black box, it's noticeably better at guessing what comes next, especially on structurally predictable text like smart replies, where token acceptance improved by up to 55%. In production, that translates to nearly two extra correctly-predicted tokens per inference pass, which means fewer expensive verification cycles and less time keeping power-hungry chips awake.

Google says it's not stopping here, with plans to explore parallel decoding, branching prediction paths for ambiguous language, and looser verification rules that trade a bit of strictness for more speed on specific tasks. It's a small architectural tweak with an outsized practical effect, and it's a good example of how a lot of real-world AI progress right now isn't about bigger models but about squeezing more out of the ones already sitting in your pocket.

My take — AI-written commentary, not fact-checked reporting

This is the unglamorous but genuinely useful side of AI progress — no new giant model, just smarter plumbing that makes existing on-device features faster and cheaper to run, which matters way more for actual users than another benchmark chart. I'd like to see Google be more specific about real battery-life numbers rather than "reduces energy consumption," but the frozen-backbone trick is a smart way to ship speed without touching safety alignment, and more labs optimizing what's already deployed instead of chasing bigger models would be a welcome trend.

Read more about this at: Google Research

Related stories

The daily briefing

Every AI story that matters, in your inbox by 8am.

TLDRocket reads all relevant sources, removes duplicate coverage, and summarises the day in two minutes. Follow companies and topics for alerts, or get the briefing in Slack. Free, no spam, unsubscribe anytime.