Sources#
What it is#
Google DeepMind's fourth-generation open-weight model family, released under Apache 2.0 on 2026-07-02 (arXiv 2607.02770). Natively multimodal (text, image, audio), explicitly targeted at "varied hardware environments" and "edge deployment" rather than at the frontier.
Five models:
| Model | Params | Notes |
|---|---|---|
| E2B | 2.3B effective (5B total) | per-layer embeddings, 150M vision + 305M audio encoder |
| E4B | 4.5B effective (8B total) | per-layer embeddings, same encoders |
| 12B | 12B dense | encoder-free — no vision or audio encoder |
| 26B-A4B | 26B total / 3.8B active | Mixture-of-Experts, 550M vision encoder |
| 31B | 31B dense | 550M vision encoder, the flagship |
Decoder-only Transformer, pre-norm + post-norm RMSNorm, QKNorm. 262k-entry SentencePiece vocabulary. Pre-training data cutoff January 2025 — eighteen months before release. Trained on TPU v5p/v6e (4,096–12,288 chips) with Slice-Granularity Elasticity, which cuts the stall from a localized chip failure "from many minutes to a few seconds."
What's actually new#
Four things, roughly in descending order of how much they matter.
A thinking mode arrives in open weights. Gemma 4 emits a reasoning trace before responding, activated by a <|think|> control token in a leading system turn. This is the test-time-compute axis reaching a model family anyone can download and run. It is also, notably, a token anyone can flip — see Open-Weight Elicitation Irreversibility.
The 12B discards its encoders. Vision: 48×48×3 RGB patches through a single 35M matmul with 2D coordinate positional embeddings, replacing a 550M ViT. Audio: the 305M USM conformer is entirely discarded; raw 16 kHz audio is cut into 40 ms chunks (640-dimensional vectors) and projected straight into the LLM embedding space, with no positional encoding at all since audio is already a temporal sequence. This corroborates Encoder-Free Early Fusion from a second lab, for a different reason.
A deep inference-efficiency stack. KV cache cut 37.5%, quantization down to sub-gigabyte, a released speculative-decoding drafter head. Detailed in Inference Efficiency as Capability — the reason this report belongs in the wiki at all.
It is not competitive at the frontier, and says so. On Arena Text (June 19, 2026), Gemma 4 31B sits at rank 43, Elo 1451 ±8 — the leading dense open model, 57 Elo behind Claude Fable 5 at rank 1, and behind six MoE open models 20–50× its size. See The Open-Weight Frontier Gap.
Reading the benchmark tables carefully#
The report's headline comparison (Table 5) puts Gemma 4 in thinking mode against Gemma 3 27B non-thinking, and no thinking-vs-non-thinking ablation for the same Gemma 4 model appears anywhere in the paper. Generation delta and inference-budget delta are therefore confounded in the single most-cited table — the exact failure Compute-Controlled Benchmarking describes. The long-context table (Table 9) is run without thinking on both sides and is the one clean generational comparison in the document.
Three checks against the paper's own prose:
- "E2B roughly matches Gemma 3 27B with 10× fewer parameters" is jagged rather than flat. E2B wins AIME 2026 (37.5 vs 20.8), Codeforces Elo (633 vs 110), LiveCodeBench v6 (44.0 vs 29.1); it loses on both broad-knowledge benchmarks — MMLU Pro (60.0 vs 67.6) and MMMLU (67.4 vs 70.7) — and on τ²-airline (31.0 vs 39.0). Reasoning compresses; stored knowledge does not. See Jagged Intelligence (Ghosts, Not Animals).
- "E4B equaling or outperforming Gemma 3 27B on all [vision] evals" holds except InfographicVQA (70.0 vs 70.6).
- The encoder-free 12B degrades out of order with scale when vision tokens are cut. Dropping from 1120 to 280 vision tokens costs the 12B −29.7 points on InfographicVQA (88.4 → 58.7), a steeper fall than the 31B (−9.2), the 26B-A4B (−11.5), and even the smaller E4B (−15.2) and E2B (−19.3). OmniDocBench 1.5 shows the same inversion (12B +0.244 error, worst of the family). The anomaly is confined to dense-text-in-image tasks; MMMU Pro and MATH-Vision degrade normally. The paper does not comment on this. Recorded in Encoder-Free Early Fusion.
Capability cliffs are steep at the bottom of the family. Humanity's Last Exam: 31B 19.5, 26B-A4B 8.7, 12B 5.2, and the two small models are not reported. GraphWalks F1: E2B scores 4.1 against Gemma 3 27B's 32.8.
Safety: the evidence tier drops inside the document#
The report carries evidence: empirical overall — sixteen tables of measured results. Section 5 contains zero tables. Its safety claims are prose: "we saw major improvements in every category of content safety," "Gemma 4 models significantly outperform Gemma 3 and 3n models in improving safety, while keeping unjustified refusals low," "the models produced minimal policy violations." No numbers, no benchmark names, no compute budget.
Treat those as vendor-claim even though the capability claims around them are empirical. The gap matters more than usual here because the weights are public and permanent — see Open-Weight Elicitation Irreversibility.
The instrument exists — it was pointed at the closed line instead. Nineteen days later DeepMind shipped the Gemini 3.5 Flash-Lite card (2026-07-21), whose safety section is a five-row table of percentage-point deltas against the previous model: text-to-text −8.14pp, multilingual −0.92pp, image-to-text 0pp, tone +3.04pp, and unjustified refusals +5.32pp in the wrong direction. That last row is the measured version of the exact quantity Gemma 4's §5 asserts without measuring ("keeping unjustified refusals low"), on a sibling model from the same lab in the same month — and when the lab does measure it, the number moves against the vendor. Nothing here supersedes Gemma 4's claim (different model, different line, no shared benchmark), but it removes the most charitable explanation for the missing tables.
Connections#
- Inference Efficiency as Capability — the report's real contribution: five levers that cut the cost of a unit of inference
- Encoder-Free Early Fusion — Gemma 4 12B is the second independent instance of the design, and the first at open-weight scale
- The Open-Weight Frontier Gap — where Gemma 4 actually sits against the open MoE giants and the closed frontier
- Open-Weight Elicitation Irreversibility — a thinking mode plus public weights plus untabulated safety evals
- Compute-Controlled Benchmarking — Table 5 is the worked example of the confound
- Jagged Intelligence (Ghosts, Not Animals) — the "10× fewer parameters" claim is jagged: reasoning compresses, knowledge doesn't
- Google DeepMind — the lab; Gemma is its open-weight line, distinct from Gemini
- Large-Scale Test-Time Compute — thinking mode is this axis reaching open weights
- The Bitter Lesson — the report both obeys it (drop the encoders) and defies it (hand-engineer the inference path)
- GLM (Z.AI) — the other 2026 open-weight family, with the opposite strategy: frontier capability at 750B-A40B where Gemma takes efficiency at 31B
Open Questions#
- Why does the MoE underperform the dense model? Gemma 4 26B-A4B scores Elo 1438 on Arena against the 31B's 1451, despite MoE being the architecture every larger open model in their own table uses. Not addressed in the paper.
- The pre-training cutoff is January 2025 but the model reports 89.2 on AIME 2026. The report says data was filtered "to decontaminate benchmarks." What does that leave, for a competition held after the cutoff?
- Is the encoder-free 12B's dense-text degradation an artifact of the 35M projection doing no feature compression, or of the 12B's training run specifically? A same-size encoder/encoder-free ablation would settle it; the paper runs none.
Sources#
- Gemma 4 Technical Report — Gemma 4 Technical Report, Gemma Team, Google DeepMind (arXiv 2607.02770, 2026-07-02).
empiricalfor capability; §5 safety claims are untabulated prose and are treated asvendor-claim.
Cited by 20
- Google DeepMind×5
This places DeepMind opposite Anthropic's Economic Index on the wiki's usage-measurement axis, and…
- Inkling×4
Attention: sliding-window and global layers interleaved 5:1 with 8 KV heads — the same ratio Gemma…
- GLM (Z.AI)×3
Gemma 4 — the sibling open-weight family with the opposite strategy (small + efficient vs large +…
- Claude Fable 5×2
Everything above is vendor-claim. One external number now exists: DeepMind's Gemma 4 report…
- Compute-Controlled Benchmarking×2
Gemma 4 — the worked example: a thinking-mode model benchmarked against a non-thinking predecessor…
- Encoder-Free Early Fusion×2
Gemma 4 — the second, independent instance: a 12B open-weight model that discards its 305M audio…
- Inference Efficiency as Capability×2
Gemma 4 (empirical) is the worked example. Its abstract sells "a leap in performance"; its…
- Jagged Intelligence (Ghosts, Not Animals)×2
Karpathy's examples are jaggedness across tasks at fixed model. Gemma 4 supplies a measured…
- Kimi (Moonshot AI)×2
Kimi K2.6 · 1T total / 32B active. Arena Text rank 34, Elo 1460, in Gemma 4's June 2026 table — 48…
- Open-Weight Elicitation Irreversibility×2
> Status: wiki synthesis, not a source claim. No source argues this. Brown makes the budget…
- The Open-Weight Frontier Gap×2
Table 4 of the Gemma 4 report is a snapshot of the open-weight landscape as of June 19, 2026,…
- Responsible Scaling Policy Evaluations×2
Gemma 4 (DeepMind, July 2026, Apache 2.0) makes the shape visible. It ships a thinking mode; its…
- The Bitter Lesson×2
Gemma 4 — removes encoders and adds inference-path structure in the same release, drawing the line…
- Autonomous Intrusion
The negative findings are load-bearing and worth stating as claims rather than facts: Hugging Face…
- Google AI & Economy ATLAS
Gemma 4 · Google Deepmind — the sibling Google artifacts in this wiki
- Large-Scale Test-Time Compute
Brown's thesis is stated in the numerator — spend more, get more. It has a corollary he doesn't…
- Entities — People, Orgs, Tools & Projects
Gemma 4 — Google DeepMind's July 2026 open-weight multimodal family (Apache 2.0): 2.3B–31B dense…
- Open Questions Backlog
Gemma 4 ×3 (oldest 34d) — Why does the MoE underperform the dense model?
- Single-Rollout Optimization
The Bitter Lesson — SAO both removes structure (drops the group baseline, drops π_θ_old) and adds a…
- TML-Interaction-Small
Gemma 4 — arrives at the same encoder-free design two months later, from memory constraints rather…
Related articles
- The Open-Weight Frontier Gap
Arena Text, June 2026: the top closed model leads the best open model by 33 Elo and the best *dense* open model by 57;…
- Compute-Controlled Benchmarking
Noam Brown's critique: the single-number benchmark grid is broken because it ignores test-time compute — plot performan…
- Kimi (Moonshot AI)
Moonshot AI's open-weight Kimi line — K2.5/K2.6 as 1T-class MoEs already circulating in this corpus (Inkling's post-tra…
- Open-Weight Elicitation Irreversibility
A wiki-drawn synthesis of Brown and Gemma 4: if dangerous capability scales with inference budget, then an open-weight…
- Inference Efficiency as Capability
If capability is a function of inference budget, then cutting the cost of a token is capability work: Gemma 4's five le…
