Four bytes. One layer. +8.32pt HellaSwag on the full validation set (n=10,042, z≈12). Training-free, calibration-free, zero inference overhead.
A Q2_K quantized Gemma 4 12B-it — 4.84 GB — with the F32 layer_output_scale of layer 10 multiplied by ×1.65. Exactly 4 bytes of the GGUF change: the F32 value 0.104004 becomes 0.171606 at byte offset 1812031584 of gemma-4-12B-it-Q2_K.gguf from bartowski/gemma-4-12b-it-GGUF. No training, no calibration data, no extra compute at inference.
TL;DR
Reading the GSM8K number: the paired n=50 result is 32% → 40% (+8.0pt), but McNemar p=0.34 — not statistically significant. Our claim for generation is strictly "non-regressive"; we do not claim a GSM8K improvement. The statistically solid results are the ranking benchmarks (HellaSwag, ARC-Challenge).
Ship-gate results, patched vs. Q2_K baseline:
metric
baseline Q2_K
TSUBO-4 (L10 ×1.65)
Δ
HellaSwag (n=10,042 full)
38.70%
47.01%
+8.32pt ⭐ (z≈12)
Winogrande (n=1,267 full)
52.80%
53.59%
+0.79pt
ARC-Challenge (n=1,165)
25.84%
32.02%
+6.18pt (z≈3.3)
GSM8K (paired, n=50)
32%
40%
+8.0pt (McNemar p=0.34 — non-regressive only)
vs. unpatched Q4_K_M
metric
Q2_K baseline (4.84 GB)
TSUBO-4 (4.84 GB)
Q4_K_M baseline (6.79 GB)
HellaSwag
38.70%
47.01%
49.75%
Winogrande
52.80%
53.59%
54.06%
ARC-Challenge
25.84%
32.02%
31.16%
GSM8K (n=50)
32%
40%
54%
The honest story: TSUBO-4 closes ~75% of the Q2→Q4 HellaSwag gap, reaches parity on Winogrande, and exceeds the Q4_K_M baseline on ARC-Challenge (+0.86pt) — at a 29% smaller file (4.84 GB vs 6.79 GB). The exception is generative math: Q4_K_M keeps a clear edge on GSM8K (54% vs 40%, -14pt). If GSM-style generation is your workload, use Q4. If you need the smallest file with the best ranking-task quality, this is it.
Benchmark comparison: Q2_K baseline vs TSUBO-4 vs Q4_K_M baseline
Benchmark methodology (read before comparing)
HellaSwag / Winogrande / ARC-C are scored by log-likelihood ranking (the standard
definition, as in lm-eval-harness): the model generates zero tokens — no chain-of-thought,
no thinking mode. These numbers measure representation quality, not reasoning traces.
GSM8K is generative: step-by-step prompt, and Gemma 4's native thinking mode is active
(verified in run logs). This is the benchmark that exercises reasoning — and the one that the
needle profile shows is fragile to the patch scale.
All headline claims are paired deltas (patched vs baseline under identical settings), so
they remain internally valid regardless of scoring mode. Cross-paper comparisons should match
scoring modes.
What is TSUBO?
We call the technique TSUBO, after the Japanese term for acupressure points: isolated loci where a minimal, precisely-placed intervention produces a system-wide response. The metaphor is structural, not medical — the points are located by exhaustive per-layer screening + fine-grained scale search, and their effects are measured on standard benchmarks. The formal term is needle-point gate patching. Retroactively, the paper-v1 8-byte patch (31B L25+L26 ×1.5) is TSUBO-8, the 44-byte basin-B patch is TSUBO-44, and the present 12B patch is TSUBO-4.
layer_output_scale is a single F32 scalar per transformer block that gates how much of that block's normalized output is written back to the residual stream. TSUBO-4 multiplies that gate by 1.65 at layer 10, and touches nothing else.
⚠ The needle: do not retune the scale yourself
Needle profile: HellaSwag plateau vs flickering GSM8K survival across ×1.60–1.70
The scale value is not a tunable knob. A 0.01-step scan across ×1.60–1.70 shows a two-layer structure:
Ranking benchmarks are flat: HellaSwag sits at +8.5 to +10.2pt (n=1,000) across the whole ×1.60–1.70 range.
Generation flickers: GSM8K survival points are isolated, not an interval. n=50-confirmed alive: ×1.62 and ×1.65 (both 32% → 40%, +8.0pt). Dead at the resolution tested (n=10–20): ×1.63, ×1.64, ×1.70. ×1.75 is established broken (0/20 pooled, p<0.01).
Extreme scales collapse: ×16.5 drives HellaSwag to 25.5% (4-way chance level) and ×21.62 to 20.0% (below chance). Absolute amplification governs the response; fractional digits carry no magic.
Practical rule: patch values must be byte-exact. A ±0.01 perturbation is not safe. Use the prebaked GGUF or the scripts below verbatim; do not "round" or "fine-tune" the scale. The GGUF byte-patch distribution format pins the value exactly, which is why this is shippable at all.
Start from gemma-4-12B-it-Q2_K.gguf of bartowski/gemma-4-12b-it-GGUF. The minimal offset-based patch (the offset is valid only for that exact file):
python
1import shutil, struct
23PATH ="gemma-4-12B-it-Q2_K.gguf"# bartowski/gemma-4-12b-it-GGUF4OFFSET =1812031584# blk.10 layer_output_scale (F32) in this exact file5SCALE =1.6567shutil.copyfile(PATH, PATH +".backup")8withopen(PATH,"r+b")as f:9 f.seek(OFFSET)10(old,)= struct.unpack("<f", f.read(4))11assertabs(old -0.104004)<1e-6,f"unexpected value {old:.6f} — wrong file or revision, aborting"12 f.seek(OFFSET)13 f.write(struct.pack("<f", old * SCALE))# 0.104004 -> 0.171606, exactly 4 bytes
Safer name-based variant (no hardcoded offset; survives re-downloads with different tensor layout):
python
1# pip install gguf numpy2import numpy as np
3from gguf import GGUFReader
45PATH ="gemma-4-12B-it-Q2_K.gguf"6reader = GGUFReader(PATH,"r+")# writable memory map7t =next(t for t in reader.tensors if t.name =="blk.10.layer_output_scale.weight")8v = t.data.view(np.float32)9assertabs(float(v[0])-0.104004)<1e-6,"unexpected value — wrong file or revision"10v[0]= np.float32(v[0]* np.float32(1.65))# stay in F32 — a float64 round-trip would change the bytes11reader.data.flush()
Restore = copy the .backup file back (Option B's first snippet creates it automatically).
Validation
Pre-registered ship gate: HellaSwag Δ≥+5pt at z≥5 on n=10,042; Winogrande and ARC-Challenge non-regressive; paired GSM8K Δ≥-2pt at n=50. TSUBO-4 passed all four (table above).
Honesty notes on the adjudication:
×1.65 was the best of 15 scale-probe points and is therefore post-selected; the adjudication, however, was run on an independent paired n=50 GSM8K set (32% → 40%, p=0.34).
The neighboring confirmed survival point ×1.62 replicated at n=50 (also 32% → 40%, +8.0pt), but only ×1.65 ran the full benchmark gate; ×1.62 ships nowhere.
The model passed an interactive spot check (5 prompts, T=0.7, no degeneration observed) before release — a guard against the known failure mode where T=0 benchmark gates pass while chat quality degrades.
For context, the published 31B results from the same technique: Q2_K HellaSwag +11.21pt (n=10,042) and GSM8K +5.40pt (n=500, McNemar p=0.0007) — see the TSUBO-8 repos below.
Mechanism (hypothesis-generating — not confirmed)
The patch amplifies a per-layer F32 output gate (layer_output_scale), plausibly compensating attenuation introduced by aggressive quantization of the surrounding weights. We state this as a working hypothesis: the mechanism is not confirmed.
What we can rule out: an earlier "rare full-attention layers" story is disproved. Layer 10 on 12B — like the 31B winners L25/L26 — is a sliding-window attention layer, not a full-attention layer. Why these particular layers respond, and why the generation-safe window narrows from a wide plateau on 31B to a needle on 12B, remains open. The patch points were found empirically by exhaustive per-layer screening + fine-grained scale search, not derived from theory.
Files
gemma-4-12B-it-Q2_K-TSUBO4.gguf (4.84 GB) — prebaked patched model
gemma-4-12B-it-Q2_K-TSUBO4.gguf.md5
apply_tsubo4.py — both patch variants above, with --restore
1@misc{hirai2026-tsubo,
2 title = {Why Some LLMs Have a Hidden Reasoning Knob: Per-Layer Output-Gate Slack in Hybrid Architectures and an 8-byte Quantization Recovery},
3 author = {Hirai, Akito},
4 year = {2026},
5 doi = {10.5281/zenodo.20362820},
6 url = {https://doi.org/10.5281/zenodo.20362820}
7}
The TSUBO naming is introduced in the v1.2 deposit of the same record (§5.7).
Limitations & Methodology Notes
GSM8K is non-regressive, not improved: +8.0pt at paired n=50, McNemar p=0.34. Do not quote it as a significant gain.
The scale is a needle, not a knob: confirmed survival points are isolated (×1.62, ×1.65 at n=50); ±0.01 perturbations are unsafe; ×1.75 is established broken (0/20, p<0.01). Apply byte-exactly.
The byte offset 1812031584 is valid only for the exact bartowski gemma-4-12B-it-Q2_K.gguf file; use the name-based variant for anything else, and verify the 0.104004 pre-value either way.
Q4_K_M baseline still wins GSM8K generation by 14pt; pick your quant by workload.
No AdvBench-style safety run exists yet for the 12B patch (the 31B TSUBO-8 release includes one); beyond the 5-prompt interactive spot check, treat alignment behavior as unaudited.
Mechanism unconfirmed (see above); cross-family transfer of the technique is weak (Qwen 3.6 +2.5pt; Phi-4 null).
Scorer caveat: HellaSwag/Winogrande accuracies measured with llama-perplexity --hellaswag mode, systematically 0.2–2.5 pp lower than lm-evaluation-harness standard (llama.cpp discussion #2321). Deltas are comparable within this card; absolute values are not directly comparable to harness leaderboards.
License: Apache 2.0 for the patch tooling. Gemma 4 base weights are licensed under Apache 2.0 (verified 2026-05-31; Gemma 4 was moved off the older Gemma Terms of Use). GGUF quantization by bartowski. The patched-GGUF derivative notice is in LICENSE-WEIGHTS.