惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog
博客园 - 三生石上(FineUI控件)
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
Vercel News
Vercel News
量子位
A
About on SuperTechFans
博客园 - 聂微东
WordPress大学
WordPress大学
D
DataBreaches.Net
The Cloudflare Blog
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
雷峰网
雷峰网
C
Check Point Blog
S
SegmentFault 最新的问题
U
Unit 42
月光博客
月光博客
Apple Machine Learning Research
Apple Machine Learning Research

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
What I learned testing AI text detectors in 2026 (they st...
Auke de Haan · 2026-05-26 · via DEV Community

Auke de Haan

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?