Machine-generated text detection¶
Detecting machine-generated text is increasingly important as language models improve and become more widely accessible. This includes both human-based detection (can people tell the difference?) and automated detection (can algorithms identify generated text by analyzing linguistic or statistical features?).
Key challenges¶
- Advancing generation quality: As language models improve (GPT-2 → GPT-3), generated text becomes harder to distinguish from human writing
- Human limitations: Untrained evaluators often perform at chance level, and even trained evaluators struggle with current models
- Domain variation: Detection accuracy varies significantly across domains (stories, news, recipes)
- Evaluation methodology: Consistent human evaluation practices are critical for benchmarking detection approaches
Key papers¶
- Build it, Break it, Repeat: Benchmarking and improving LLM-manipulated disinformation — BiBiR benchmarking framework for detecting machine-generated social media posts under iterative adversarial conditions; introduces bld_data (baseline training set) and brk_data (adversarial evaluation set); evaluates siamese, triplet, and dynamic anchor switching (DASS) architectures; shows chained attacks more effective than individual techniques.
- Nakov (2026) — Challenges with Large Language Models: Implications for Fake News, Fact-Checking, and Misinformation Detection (video) — Presents perturbation-based detection of machine-generated content (white-box and black-box settings); discusses M4 dataset with multiple generators, domains, and languages; identifies cross-domain generalization challenges and domain-specificity of detection approaches
Problem definition and evaluation frameworks: - Dycke et al. (2026) — 'Your AI Text is not Mine': Redefining and Evaluating AI-generated Text Detection under Realistic Assumptions: Analyzes fragmentation in AITD task definitions across literature; proposes unified framework distinguishing genesis-based vs. population-based notions; introduces AITDNA dataset of real human-AI co-creation; shows detector performance depends on alignment with implicit normative standards and assumptions
Real-world prevalence of LLM-generated content in disinformation: - Macko et al. (2026) — Beyond Speculation: Measuring the Growing Presence of LLM-Generated Texts in Multilingual Disinformation: Provides first empirical evidence of LLM-generated content in fact-checked multilingual social media posts; shows increasing prevalence (0.93% in 2021 to 2.15% in 2024) with sharp rise post-ChatGPT; reveals heterogeneous patterns across 15 languages and 5 platforms; validates multilingual detection methodology
Fake news detection with mixed human-machine content: - Su, Cardie & Nakov (2023) — Adapting Fake News Detection to the Era of Large Language Models: Addresses critical challenge of detecting fake news as content landscape transitions from human-written to machine-generated; reveals that detectors trained on human-written fake news generalize poorly to machine-generated variants; proposes training on balanced mixtures of human and machine-generated content for robustness
Watermarking & proactive detection: - Kirchenbauer et al. (2023) — A Watermark for Large Language Models: Proposes watermarking LLM outputs by promoting "green" tokens during decoding; watermark is detectable via z-test without model access, achieves <1.2% false positive rate.
Zero-shot detection via probabilistic analysis: - Mitchell et al. (2023) — DetectGPT: Zero-Shot Machine-Generated Text Detection using Probability Curvature: Identifies that LLM-generated text occupies negative-curvature regions of the log-probability landscape; proposes a zero-shot detection method using perturbation-based curvature estimation, achieving 0.95 AUROC on GPT-2 detection.
Human evaluation of generated text: - Clark et al. (2021) — All That's 'Human' Is Not Gold: Empirically demonstrates that untrained humans cannot distinguish GPT2 (57% accuracy) or GPT3 (50% accuracy) from human text; tests training interventions to improve evaluator accuracy.
Related topics¶
- Text generation — source of generated text
- Human evaluation — human detection of generated content
- NLP evaluation — evaluation methodology
- Generated text detection — synonym/related topic