DEV Community

Auke de Haan
Auke de Haan

Posted on

What I learned testing AI text detectors in 2026 (they still get it wrong)

If you build anything that touches user generated text, sooner or later someone asks: can we just detect the AI written stuff and filter it out? I spent a while putting tools like GPTZero, Originality.ai, Copyleaks and Turnitin through their paces. Here is the short version of what I found.

Detection is a probability game, not a yes or no

Every detector outputs a likelihood, not a verdict. Under the hood most of them lean on perplexity (how predictable the next token is) and burstiness (how much sentence length and structure vary). Machine generated text tends to be smooth and low perplexity. Human text tends to be lumpy. That signal is real, but it is statistical, and statistics produce false positives.

The false positive problem is worse than the marketing admits

The failure mode that actually hurts people is flagging genuine human writing as AI. It hits two groups hardest:

  • Non native English (or non native any language) writers. Simpler vocabulary and more regular sentence structure read as low perplexity, which is exactly what detectors score as machine like. Stanford researchers documented this bias clearly.
  • Technical and formulaic writing. Documentation, legal boilerplate and academic abstracts are repetitive by design, so they trip the same wire.

OpenAI quietly pulled its own classifier in 2023 because the accuracy was not good enough to ship. That should tell you something about how hard the problem is for everyone else.

What this means if you are building with it

A few practical takeaways from the testing:

  1. Never auto reject on a detector score alone. Treat it as one weak signal in a review queue, not a gate.
  2. Watch the threshold. Vendors tune for a low false negative rate so they look tough on AI. That trade pushes false positives up. Pick your own threshold for your own risk.
  3. Longer samples are more reliable. Most tools are close to coin flips under ~150 words.
  4. Paraphrasers beat detectors. A single pass through a humanizer often drops the AI score to near zero, so a determined user routes around you anyway.

My honest conclusion: detectors are useful as a triage hint and useless as a tribunal. If a decision matters (a grade, a payment, a ban), a human has to look.

I compiled the full hands on comparison, including how each tool handles Dutch and other non English text, in this 2026 AI detector guide. Curious whether others here have found a detector that holds up in production, or whether you have given up on the idea entirely. What is your experience?

Top comments (1)

Collapse
 
audioproducer-ai profile image
AudioProducer.ai

Detectors as triage hint vs tribunal is the right frame, and I think the deeper move you're pointing at is that the surface itself is wrong - asking "was this generated" is a worse question than asking "what's the editable production process behind this artifact."

The two failure modes you list (non-native English + technical formulaic writing) hit me as a special case of the same problem: detectors model variance, but variance comes from many sources besides authorship. ESL writers, technical writers and AI all produce low-perplexity text for different structural reasons; one classifier can't distinguish them because the signal it reads is downstream of all three. OpenAI pulling their own classifier in 2023 wasn't just about accuracy, it was an admission that the question is malformed.

I work on AudioProducer.ai (audio production for writers), and we hit the exact same wall on the audio side - there's no "AI audio detector" worth using, partly because TTS engines are good enough that one-pass output is hard to distinguish from a real narrator on short samples. So we don't try. We disclose: every AI-drafted dev.to article from us carries a footer saying so, and inside the editor every audio render is paired with editable artifacts (per-line speaker map, per-paragraph soundscape annotation, per-character voice assignment) the writer can re-tag in place. The artifact is the provenance. The rendered output is the artifact's downstream.

That maps onto your "review queue, not a gate" recommendation. The detector score is too weak to be a tribunal verdict, but a structured editable source is what the human reviewer actually needs to make the judgment. For text it might be a doc with the prompt+model+ruleset that produced each paragraph; for audio it's the speaker map and soundscape annotations someone can re-tag in place. Either way the load-bearing primitive is the artifact the writer keeps editing, not a confidence number from a classifier that lost the upstream context.

Curious whether you saw any tools experimenting in that direction - moving from "score the output text" to "require an attached production trace before you accept the submission." Feels like that's where the actually useful signal lives, but I haven't seen anyone in the detector market move there.