logo

What Quantization and Fine-Tuning Do to a Model’s Detectability

Paperbleach
Paperbleach

05 Aug 2026

Does fine tuning affect AI detection? Yes — a detector learns the statistical habits of specific base models, and fine-tuning rewrites those habits, so the further a model is tuned away from its off-the-shelf voice, the worse the detector’s guesses get. Quantization matters far less, but it pushes in the same direction: away from the exact distribution the detector studied. Together they explain an uncomfortable truth of the arms race — detectability is not a property of “AI text.” It’s a property of one particular generator meeting one particular detector.

Key takeaways

  • Detectors are trained on output from a handful of well-known models at default settings; that’s the distribution they actually recognize.
  • Fine-tuning shifts word preferences, sentence rhythm, and structure — sometimes mildly, sometimes enough to move a verdict outright.
  • Deliberate anti-detector fine-tuning is demonstrated research, not speculation, and it’s cheap in the open-weights world.
  • Quantization is a blur, not a disguise: small probability shifts that add noise without changing the model’s style.
  • Watermarks depend on controlling the sampler, which is precisely what fine-tuning and self-hosting take away.

So, does fine-tuning affect AI detection?

Start with what a trained detector actually is: a classifier that learned the difference between human corpora and machine output from specific models — usually the big API models, sampled at default temperature, in their default assistant voice. That voice is remarkably consistent, which is why classifiers work at all.

The generator–detector match has mattered since before ChatGPT. The Grover work in 2019 already showed that a detector built around one generator catches that generator well and stumbles on others; the RAID benchmark made the modern version of the point across eleven generators and dozens of decoding configurations — accuracy swings dramatically depending on which model produced the text and how. Fine-tuning creates, in effect, a new generator the detector never met.

What changes concretely? Word preferences first: a model tuned on legal filings, fanfiction, or one person’s emails redistributes probability toward that corpus’s vocabulary, away from the base model’s favorites. Then rhythm — sentence-length variance, clause structure, how paragraphs open. Then the tics: the hedges and transitions that make assistant prose feel like assistant prose can be trained out with a few thousand examples. None of this requires intent to evade. A company tuning a support bot for brand voice is also, incidentally, moving it off the distribution detectors watch.

We’ve written before about the personal version of this — how fine-tuned personal writing throws off stylometry — where a model tuned on your own prose starts inheriting exactly the idiosyncrasies stylometric detectors use to certify humanity.

The adversarial extreme: tuning against the detector itself

The mild case is accidental drift. The sharp case was demonstrated by Stanford researchers in work titled bluntly enough — “Language Model Detectors Are Easily Optimized Against.” Use a detector’s score as a reinforcement-learning reward, fine-tune an open model to minimize it, and the detector’s accuracy on that model collapses, at a training cost measured in ordinary-lab budgets rather than frontier ones. Text quality survives mostly intact.

Two caveats keep this from being a skeleton key. Optimization is detector-specific: a model tuned to beat one commercial detector transfers only partially to others, and vendors can retrain on the evader’s output once they collect enough of it. And the tuned model doesn’t become styleless — it trades the base model’s signature for a new one, which a future classifier can learn. This is the same treadmill that how open-source models broke AI detection describes: open weights turned the generator population from a short list into a long tail, and fine-tuning is the engine that keeps the tail growing.

Where quantization fits — smaller, and slightly stranger

Quantization gets lumped in with fine-tuning, but it does something much weaker. Compressing weights from 16-bit to 8- or 4-bit precision perturbs the model’s output probabilities; run the same prompt and the quantized model occasionally picks a different word where probabilities were close. Against a detector calibrated on the full-precision model’s statistics, that’s a small amount of added noise.

Honesty requires saying the direct evidence here is thin — detectability studies mostly compare models and decoding settings, not precision levels, so the effect size on real detectors isn’t well measured. The mechanism, though, is uncontroversial: quantization changes the distribution slightly without changing what the model wants to say. Think of fine-tuning as a new voice and quantization as a mild slur in the old one. If you’re wondering why locally-run 4-bit models seem to score erratically, this noise — stacked on nonstandard samplers and system prompts — is a better explanation than any inherent stealth.

The watermark angle

Watermarking is the one detection technology that doesn’t care about style, because the signal is planted in the sampler at generation time. That’s exactly why fine-tuning matters to it. The mark exists only if the entity running inference runs the watermarked sampling procedure — which hosted APIs can guarantee and self-hosted fine-tunes simply don’t. Research on watermark learnability cuts both ways: distill a student model from watermarked teacher output and the student can inherit a detectable version of the mark, but continued training on clean data erodes it. In practice, the population of fine-tuned open models is a population of unwatermarked generators, and no detector downstream can restore what the sampler never planted.

What this means in practice

If you evaluate text: stop treating any single score as generator-agnostic. Detectors are strongest on mainstream API output and weakest on tuned variants they’ve never sampled, so a clean score means “not recognized,” not “not generated.” Corroborate with process evidence before acting on either verdict.

If you’re a writer whose drafts keep getting flagged, the same logic runs in reverse — your text’s statistics, not its origin, drive the score. Check a draft yourself before a gatekeeper does: try it on your own text with a sentence-level heatmap so you can see which passages read machine-flat, or see what each plan handles if you’re checking at volume. And for the wider context on how generators outran the tools built to catch them, browse the rest of our writing on detection.

Frequently asked questions

Does fine-tuning a model change whether detectors catch its output? Yes, measurably. Detectors are trained on output from well-known base models served with default settings; fine-tuning shifts the model’s word preferences, rhythm, and structure away from that training distribution. The further the tune drifts from the base model’s house style, the more the detector’s assumptions miss. A light instruction tune moves scores a little; a heavy tune on a distinctive corpus can move them a lot.

Can someone deliberately fine-tune a model to beat AI detectors? Research says yes, and cheaply. Stanford researchers showed that using a detector’s own scores as a reinforcement-learning reward lets you fine-tune an open model until that detector passes its output routinely, with modest compute and little quality loss. The catch is specificity: optimizing against one detector doesn’t guarantee anything about the others, and the tuned model now carries its own consistent, learnable style.

Does quantization make AI text harder to detect? Only slightly, and it’s the least-studied piece of this. Quantization compresses a model’s weights, which nudges its output probabilities — the same prompt can yield marginally different word choices than the full-precision model. That adds noise against detectors calibrated on the original, but it doesn’t change the model’s underlying style. Fine-tuning changes what the model prefers to say; quantization just blurs it a little.

Do watermarks survive fine-tuning? Poorly, in the open-weights setting. A watermark lives in the sampling procedure the provider controls; anyone who fine-tunes and self-hosts an open model simply isn’t running the watermarked sampler. Research on watermark learnability shows distillation can pass a mark from teacher to student, but that same line of work shows further training can wash it out. Watermarks are a hosted-API story, and fine-tuning is exactly the escape hatch.

What does this mean for people checking text they receive? Treat a low score on any single detector as weak evidence, because you never know which generator produced the text. Detectors do best on the mainstream API models they trained against and worst on the long tail of tuned variants. Corroborate with process evidence — drafts, version history, a conversation with the writer — instead of trusting the number to be generator-proof.

The bottom line

Every detector is a portrait of the generators it studied. Fine-tuning repaints the subject — sometimes accidentally, sometimes with the detector’s own score as the brush — and quantization smudges the edges. That’s why “is this detectable?” has no stable answer: the honest question is always *which model, tuned how, against which detector, this month*. Tools that show you *why* text reads as machine-made age better than verdicts that pretend the generator population stood still.

Try it on your own text

Paste your draft into PaperBleach to humanize AI text so it reads naturally — then check your score against built-in AI detection. Free on your first run.