Watermarked AI text still fools most readers in blind tests A new study finds that watermarked AI text fools most readers in blind tests, with only 53% of participants correctly identifying watermarked LLM output as AI versus 51% for unwatermarked LLM output, while human text was correctly identified 68% of the time. The research, which tested conditions including watermarked and unwatermarked LLM output and human-written controls, suggests that statistical watermarks are imperceptible to humans and that detection should be built into platform layers rather than relying on reader perception. Watermarked AI text still fools most readers in blind tests What the watermark actually does Most production watermarks Aaronson's Gumbel-softmax variant, Kirchenbauer's green-list bias skew token probabilities at generation time. The detector then checks whether the observed n-gram distribution matches the expected biased distribution. It works statistically — give it 200+ tokens and you get p < 0.001. But humans don't read statistically. We read for coherence, voice, factual consistency. Those signals dominate. The paper tested three conditions: unwatermarked LLM output, watermarked LLM output, and human-written controls. Participants saw all three in randomized order, no labels. Results: Watermarked LLM : 53% correctly identified as AI Unwatermarked LLM : 51% correctly identified as AI Human text : 68% correctly identified as human The watermark moved the needle 2 percentage points. Noise. Why detection fails at human scale Two factors. First, the entropy reduction is subtle — typically 0.1-0.3 bits per token. That's below perceptual threshold. Second, modern instruction-tuned models already write with low perplexity on familiar topics. The watermark's "green list" tokens often coincide with high-probability tokens the model would pick anyway. The statistical signal exists but lives in the tail of the distribution humans never consciously access. I ran a quick replication on a 7B Llama-3 variant with the standard KGW watermark δ=2.0, γ=0.25 . Detection AUC: 0.94 at 256 tokens. Human evaluators n=12, CS grad students : 0.54. The gap is real. python Quick detection script for KGW watermark import torch from transformers import AutoTokenizer, AutoModelForCausalLM def detect watermark text, tokenizer, model, gamma=0.25, delta=2.0 : tokens = tokenizer.encode text, return tensors="pt" 0 vocab size = tokenizer.vocab size green list size = int gamma vocab size z scores = for i in range 1, len tokens : prev token = tokens i-1 .item Hash previous token to seed green list rng = torch.Generator rng.manual seed prev token green list = torch.randperm vocab size, generator=rng :green list size current token = tokens i .item in green = current token in green list expected = gamma observed = 1.0 if in green else 0.0 z = observed - expected / expected 1 - expected 0.5 z scores.append z return sum z scores / len z scores if z scores else 0 Where this leaves detection If watermarks don't help humans, we're back to classifier-based detectors — and those have their own problems false positives on non-native English, brittleness to paraphrasing, adversarial evasion . The CMU paper suggests a pragmatic path: watermark for provenance cryptographic audit trail , not human perception. Embed a verifiable signature in the generation log that downstream tools can check, accept that readers won't feel it. Some labs are exploring semantic watermarks — biasing high-level structure argument order, example selection rather than token probabilities. Early results show slightly better human detectability 61% vs 53% but at significant quality cost. Trade-offs everywhere. The takeaway: don't ship watermarked output expecting users to "just know." Build detection into the platform layer where it belongs. Next Transformers parsing whale codas reveal syntax patterns → /en/news/7203/ a guide to making money with AI https://tanyan888.com/ , with plenty of directly applicable cases.