
DeAI Humanizer — Beat AI Detection with math
DeAI Humanizer — Technical Whitepaper
Research-backed AI text humanization. Based on 27 research reports, 25+ arXiv papers, and analysis of 10+ commercial detection tools.
Why This Skill Works (The Science)
Most "AI humanizers" do one thing: swap words. They replace "delve" with "explore" and call it done. That stopped working in 2025.
Modern AI detectors don't look at individual words. They analyze statistical fingerprints — patterns in how predictable your text is, how uniform your sentences are, and how closely your writing follows AI-default structures.
DeAI Humanizer attacks detection on all four layers simultaneously, using techniques derived from peer-reviewed research and real-world testing against GPTZero, Originality.ai, Turnitin, Winston AI, and Copyleaks.
The Four-Layer Architecture
Layer 1: Vocabulary Fingerprint Erasure
Research basis: GPTZero AI Vocabulary Database; Originality.ai pattern analysis
AI models have a distinct "accent" — a set of words they overuse because of training data bias and RLHF optimization. Our marker database contains:
| Language | AI Markers | Coverage |
|---|---|---|
| English | 50+ words/phrases | GPT-4, Claude, Gemini, Llama patterns |
| Chinese | 55+ words/phrases | 文心一言, 通义千问, GLM, DeepSeek patterns |
What's unique: We don't just flag words — we provide 3-4 context-appropriate replacements per marker, calibrated by genre. An academic paper and a blog post should not use the same replacement for "leverage."
Layer 2: Burstiness Injection
Research basis: "Burstiness Analysis in Human vs Machine Writing" (2024); Perplexity maximization via temperature sampling
The mathematical foundation:
Burstiness (B) = σ(L) / μ(L)
where L = {l₁, l₂, ..., lₙ}, lᵢ = length of sentence i
σ = standard deviation, μ = mean
AI text: B ≈ 0.2–0.3 (sentences are uniformly 15-20 words)
Human text: B ≈ 0.4–0.6 (sentences range from 3 to 50+ words)
What we do: Our Python engine (deai_engine.py) computes the actual CV (Coefficient of Variation) of your text's sentence lengths, then the LLM rewrites to hit target ranges:
| Intensity | Target CV | Strategy |
|---|---|---|
| Light | 0.3–0.4 | Minor length variation |
| Medium | 0.4–0.5 | Mix punchy shorts (3-8 words) with complex longs (25-40 words) |
| Aggressive | 0.5–0.7 | Maximum variation — fragments, run-ons, natural digressions |
Why it matters: GPTZero's primary metric is burstiness. A CV below 0.3 is an immediate AI flag. Our engine measures this precisely rather than guessing.
Layer 3: Structural Pattern Destruction
Research basis: Multi-dimensional analysis methodology from GPTZero 7-component model; Turner structural consistency metrics
AI text follows predictable templates:
- English: Introduction → "Firstly/Secondly/Finally" → "In conclusion"
- Chinese: "首先/其次/最后" → "综上所述" → uniform 4-5 sentence paragraphs
Our engine detects 15+ structural patterns (regex-based in English, character-sequence-based in Chinese) and the LLM systematically breaks them:
- Reorder points by interest, not by "firstly/secondly"
- Vary paragraph lengths from 1 sentence to 8 sentences
- Replace formulaic conclusions with specific anecdotes or questions
- For Chinese: replace 成语堆砌 (idiom stacking) with colloquial expressions
Layer 4: Human Imperfection Injection
Research basis: "Perfect Defect" theory from information psychology; burstiness extension to discourse-level features
Humans write imperfectly — and that imperfection is itself a signal of authenticity. Controlled imperfections include:
| Technique | English | Chinese |
|---|---|---|
| Conversational openers | "Look," "Here's the thing," | "说实话," "你想啊," |
| Fillers (sparse) | "sort of" "kind of" | "基本上" "怎么说呢" |
| Self-corrections | "or rather," "well, maybe not exactly" | "不对,应该说" |
| Sentence fragments | "Game changer." "Which matters." | "关键在这儿。" "就这么简单。" |
| Direct address | "you know?" "right?" | "懂吧?" "你品品" |
Key constraint: Imperfections are injected at the aggressive intensity only. Light and medium modes keep the text polished — because not every context calls for informality.
Detector-Specific Optimization
Not all detectors look for the same things. Based on our research into each detector's algorithm:
| Detector | What It Weighs Most | Our Priority |
|---|---|---|
| GPTZero (99% accuracy) | Perplexity + Burstiness + AI Vocabulary | Rule 2 → Rule 1 → Rule 3 |
| Originality.ai (99%+) | Vocabulary fingerprint + Syntax patterns | Rule 1 → Rule 3 → Rule 4 |
| Turnitin (95%) | Sentence predictability + Structural consistency | Rule 3 → Rule 2 → Rule 4 |
| Winston AI (99.98%) | Syntax analysis + Probability heatmap | Rule 1 → Rule 3 → Rule 2 |
| Copyleaks (99%) | Multi-model fusion + Rewrite detection | Rule 1 → Rule 4 → Rule 2 |
When you specify a target detector, the skill reorders its rule execution to attack that detector's blind spots first.
Known detector weaknesses we exploit:
- GPTZero: Rewritten content detection drops to 77%
- Originality.ai: False positive rate of 5.7% means aggressive vocabulary swap is safe
- Turnitin: 17-22% false positive rate (being dropped by universities) — structural variety is highly effective
Chinese Text: A Different Battlefield
Most humanizers are English-only. Chinese AI detection has fundamentally different characteristics:
The Four-Character Idiom Problem (四字词语堆砌)
AI models trained on Chinese data overuse 成语 and 四字词语. Our engine specifically tracks:
Four-Character Idiom Density = (idiom_chars / total_zh_chars) × 100%
AI text: density > 3% (stacked with 蒸蒸日上、日新月异、翻天覆地...)
Human text: density < 1% (used sparingly and naturally)
Chinese NLP Specific Challenges
| Challenge | Impact on Detection | Our Approach |
|---|---|---|
| No word boundaries (分词) | Detection must work at character + word level | Character-level pattern matching |
| AI tendency toward 排比句 | Three+ parallel structures = instant AI flag | Break parallelism, vary sentence patterns |
| Formulaic paragraph openers | "首先/其次/最后" is AI's default | Reorder by importance, not enumeration |
| Over-formal tone (空洞正式感) | Grand vocabulary, empty meaning | Replace with colloquial expressions |
How the Python Engine Works
The deai_engine.py script provides real mathematical analysis — not LLM guessing:
# Analyze text before humanization
python3 deai_engine.py analyze "Your AI-generated text here"
# → Returns: AI score (0-100), burstiness CV, vocabulary density, structural patterns
# Score improvement after humanization
python3 deai_engine.py score "original text" "humanized text"
# → Returns: AI score delta, burstiness change, vocabulary removal count
Metrics Computed
| Metric | Formula | What It Measures |
|---|---|---|
| Burstiness (CV) | σ(L)/μ(L) | Sentence length uniformity |
| AI Vocabulary Density | (AI words / total words) × 1000 | How many AI-typical words per 1000 words |
| Structural Pattern Count | Regex pattern matching | Formulaic structure detection |
| Four-Character Idiom Density | (idiom chars / total zh chars) × 100% | Chinese idiom overuse |
| Passive Voice Ratio | passive sentences / total sentences | English passive voice overuse |
Composite AI Score
The engine computes a weighted composite score (0-100):
AI Score = burstiness_weight(30) + vocabulary_weight(30) + structural_weight(25)
+ idiom_weight(15) + passive_weight(10)
Score interpretation:
70-100: Very likely AI-generated
45-69: Likely AI-generated
25-44: Uncertain
0-24: Likely human-written
Research Sources
This skill is built on the following research:
Academic Papers
- "Detecting AI-Generated Text: A Multidimensional Approach" (2025)
- "Burstiness Analysis in Human vs Machine Writing" (2024)
- "SynthID-Text: Tournament Sampling for Watermarking" — Google DeepMind
- "MirrorMark: Distortion-Free Multi-bit Watermarking" — arXiv 2601.22246
- "MarkSweep: No-box Watermark Removal Attack" — arXiv 2602.15364
- "SIRA: Self-information Rewrite Attack" — ICML 2025
- "GenVidBench: 6-million Video Benchmark" — Academic benchmark
Industry Research
- GPTZero Detection Algorithm Documentation (2026)
- Originality.ai Detection Accuracy Benchmark (2026)
- Stanford AI Detection False Positive Study (2025)
- UMD ESL False Positive Research (2025)
Chinese-Specific Research
- 《互联网信息服务深度合成管理规定》(2023)
- 《人工智能生成合成内容标识办法》(2025-09-01)
- 清华大学 FatFormer 模型研究
- 中科院 REM 技术研究
- 浙江大学多模态生成内容检测研究
Market Intelligence
- Undetectable AI — 87% bypass rate, 22M+ users (2026)
- StealthWriter — 80% bypass rate (2026)
- Humanizer Pro — 82% bypass rate (2026)
- AI Detection Market: $2-3B detection, $500-800M humanization (2026)
What This Skill Does NOT Do
Transparency matters:
- Does not compute actual Perplexity scores — that requires a language model, which a prompt-based skill cannot embed. Instead, we use burstiness (CV) as a proxy metric that correlates strongly with perplexity.
- Does not remove neural watermarks (SynthID, MirrorMark) — watermark removal requires model-level access. Our techniques address statistical detection, not embedded watermarks.
- Does not guarantee 100% bypass — no tool can. Based on research, realistic expectations are:
- Conservative: 60-70% detection probability reduction
- Typical: 75-85% improvement against most detectors
- Best case: 85-90% with aggressive mode + Round-2 calibration
- Does not fabricate facts — semantic fidelity is non-negotiable


