Your 4B Already Computes the Answer, Then Fails the Decode
Preliminary work on tiny samples, but the diagnostic underneath the headline — natural termination as a free correctness oracle — is deployable on your current stack without the noise trick.
The mechanism, and why the direction of the noise is irrelevant
The proposed pathology is autoregressive lock-in: the first ~20 tokens set a formatting template, and the model spends its remaining budget servicing it. The token counts back this up. Correct arithmetic runs averaged 718 tokens; wrong runs hit the 1,024-token ceiling and truncated mid-strategy. Two random vectors at positions 0-1 perturb the opening trajectory enough to break the template.
The ablations, reported via Artificial Intelligence Made Simple's coverage of the Irys work, close off the boring explanations:
| Intervention (Qwen3-4B) | Delta accuracy | What it eliminates |
|---|---|---|
| Zero-embedding prefix | +4pp | "Any prefix works" |
| Mean-embedding prefix | +4pp | Positional shift alone |
| Random noise, 2 tokens | +19.6pp | Value diversity is required |
| Random noise, no chain-of-thought | +0pp | Needs step-by-step decoding |
| Optimized projection vs. random | identical (p=1.000) | Information content |
Optimized projections did no better than pure noise (Mann-Whitney p=1.000), and Euclidean versus hyperbolic mutations were indistinguishable. That points to an energy-based effect — stochastic resonance, where added randomness helps a system escape a stuck state — not a prompt carrying information. The paired significance test on the 2-token arithmetic result was McNemar p=0.000015.
The envelope is narrow, and two gates will bite you
4-bit quantization nearly eliminates the effect. Qwen3-8B gained +12.8pp at 8-bit but a null +1.3pp at 4-bit (p=0.000177); the working hypothesis is 256 versus 16 distinct weight values, too coarse a grid for the perturbation to move anything. Models near ceiling regress: DeepSeek-R1-Distill-1.5B went 76.0% to 74.4%. Dose-response peaks sharply at two prefix tokens and decays from three to eight as the model branches into half-finished strategies. The role also changes by size: on 4B it is a convergence aid (answer-anywhere barely moves, 80% to 82%, but stated accuracy jumps), on 8B an exploration aid (answer-anywhere 32% to 50%).
The takeaway that needs no noise at all
Across 500 generations on both 4B and 8B, every naturally-terminated response was correct: P(correct | natural EOS) = 1.000. If that replicates on your task distribution, it is a confidence gate you can ship this week. Route truncated generations to resample or fallback instead of returning them. It costs one field in the inference logs.
Then the selector. Oracle best-of-10 reaches 100% on 4B, plurality voting realizes 72%, and the mean single seed is 51.6%. Majority voting is actively harmful when per-seed accuracy sits below 50%: 40% on 4B and 12% on 8B, the latter below the 16% baseline. Switching majority to plurality and gating on EOS are two config changes that recover more than any plausible base-model upgrade in the same period.
The modeled economics: ten seeds at roughly $0.009 per query against ~$0.45 for a frontier thinking model, with the two prefix vectors adding 0.097% overhead. At 10K queries/day that is $2,700 versus $135,000 a month. Discount the vendor-flavored arithmetic heavily; the ratio still justifies auditing which workloads overpay.
What the caveats forbid
The things these numbers don't tell you are load-bearing. Samples are tiny (25/5/12 tasks), n=3 scout runs overestimated the effect by ~9pp, the legal scorer was broken on 9 of 12 tasks, and a prior verbosity claim turned out to be a code bug. The failure that matters: on out-of-knowledge tasks such as GDPR classification and data-breach triage, every condition fabricated content.
Noise adds energy, never knowledge — it helps a model finish a computation it already did, and does nothing for one it never could.
What to do
Reproduce the 2-token random-prefix result on Qwen3-4B at 8-bit against your own eval set this sprint, logging per-seed accuracy and natural-EOS rate per task.
Switch best-of-N voting from majority to plurality and discard truncated generations before the vote, in the next serving release.
Fund a verifier-reranker (execution checks for math and code, or a small trained verifier) as this quarter's accuracy work instead of a base-model upgrade.