Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -7,88 +7,51 @@ tags:
|
|
| 7 |
- ai-detection-evasion
|
| 8 |
- diffusion-gemma
|
| 9 |
- block-diffusion
|
| 10 |
-
- research
|
| 11 |
pipeline_tag: text-generation
|
| 12 |
language: en
|
| 13 |
---
|
| 14 |
|
| 15 |
# DiffusionGemma Humanizer
|
| 16 |
|
| 17 |
-
**
|
| 18 |
-
|
|
|
|
| 19 |
|
| 20 |
## Key Finding
|
| 21 |
|
| 22 |
-
**DiffusionGemma base model achieves
|
| 23 |
-
heuristic ensemble detectors (perplexity + burstiness + stylometric markers).
|
| 24 |
-
|
| 25 |
-
|
| 26 |
|
| 27 |
-
##
|
| 28 |
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
| 33 |
|
| 34 |
-
|
| 35 |
-
1. Load DiffusionGemma 26B in 4-bit (NF4) on A100 80GB via Modal
|
| 36 |
-
2. Generate baseline text with entropy-bounded denoising
|
| 37 |
-
3. Test against open-source detectors (perplexity, burstiness, Fast-DetectGPT)
|
| 38 |
-
4. Humanize via prompt engineering + decoder_input_ids (start denoising from AI text)
|
| 39 |
-
5. Export results to this repository
|
| 40 |
-
|
| 41 |
-
## Repository Contents
|
| 42 |
-
|
| 43 |
-
- `research_report.md` — Gemma models, diffusion LMs, Modal pricing
|
| 44 |
-
- `research_datasets_training.md` — Training data survey (HC3, RAID, M4, etc.)
|
| 45 |
-
- `commercial_ai_detectors_report.md` — Pangram, GPTZero, Originality.ai analysis
|
| 46 |
-
- `research/architecture-strategy.md` — Architecture decisions & cost breakdown
|
| 47 |
-
- `research/technical-diffusion-text-humanization-2026-06-29.md` — Full lit review
|
| 48 |
-
- `modal_project/app.py` — Complete 6-step Modal pipeline
|
| 49 |
-
- `scripts/` — Pipeline launchers
|
| 50 |
-
|
| 51 |
-
## Architecture
|
| 52 |
-
|
| 53 |
-
DiffusionGemma uses block-autoregressive diffusion:
|
| 54 |
-
- Encoder processes prompt → KV cache
|
| 55 |
-
- Decoder uses bidirectional attention on 256-token canvases
|
| 56 |
-
- Entropy-Bounded Denoising progressively refines text (1-48 steps)
|
| 57 |
-
- Starting canvas can be set via decoder_input_ids for iterative refinement
|
| 58 |
-
|
| 59 |
-
## Why Diffusion for Humanization?
|
| 60 |
-
|
| 61 |
-
1. **Different statistical signature** — Diffusion-generated text follows different token probability distributions than autoregressive text, making it OOD for AR-trained detectors
|
| 62 |
-
2. **Bidirectional attention** — Holistic text understanding enables coherent style manipulation
|
| 63 |
-
3. **Iterative denoising** — Progressive refinement from AI text toward human-like output
|
| 64 |
-
4. **No left-to-right bias** — Avoids the "reversal curse" and other AR artifacts
|
| 65 |
-
|
| 66 |
-
## Humanization Code Example
|
| 67 |
|
| 68 |
```python
|
| 69 |
from transformers import DiffusionGemmaForBlockDiffusion, AutoProcessor, BitsAndBytesConfig
|
| 70 |
import torch
|
| 71 |
|
| 72 |
-
|
| 73 |
-
load_in_4bit=True,
|
| 74 |
-
|
| 75 |
-
bnb_4bit_use_double_quant=True,
|
| 76 |
-
bnb_4bit_quant_type="nf4",
|
| 77 |
)
|
| 78 |
model = DiffusionGemmaForBlockDiffusion.from_pretrained(
|
| 79 |
"google/diffusiongemma-26B-A4B-it",
|
| 80 |
-
quantization_config=
|
| 81 |
-
device_map="auto",
|
| 82 |
)
|
| 83 |
processor = AutoProcessor.from_pretrained("google/diffusiongemma-26B-A4B-it")
|
| 84 |
|
| 85 |
-
# Starting canvas = AI text (not random)
|
| 86 |
ai_text = "AI-generated text to humanize..."
|
| 87 |
-
ai_tokens = processor.tokenizer(ai_text, max_length=256, truncation=True,
|
| 88 |
-
padding="max_length", return_tensors="pt")
|
| 89 |
-
|
| 90 |
messages = [
|
| 91 |
-
{"role": "system", "content": "Rewrite to sound
|
| 92 |
{"role": "user", "content": ai_text},
|
| 93 |
]
|
| 94 |
inputs = processor.apply_chat_template(
|
|
@@ -96,29 +59,25 @@ inputs = processor.apply_chat_template(
|
|
| 96 |
return_dict=True, return_tensors="pt",
|
| 97 |
).to(model.device)
|
| 98 |
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
decoder_input_ids=ai_tokens["input_ids"].to(model.device),
|
| 103 |
-
max_new_tokens=512,
|
| 104 |
-
max_denoising_steps=24,
|
| 105 |
-
t_max=0.8,
|
| 106 |
-
t_min=0.4,
|
| 107 |
)
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
)
|
|
|
|
| 112 |
```
|
| 113 |
|
| 114 |
-
##
|
| 115 |
|
| 116 |
-
|
| 117 |
-
-
|
| 118 |
-
-
|
| 119 |
-
-
|
| 120 |
-
-
|
| 121 |
|
| 122 |
## License
|
| 123 |
|
| 124 |
-
Apache 2.0 (matching the base model)
|
|
|
|
| 7 |
- ai-detection-evasion
|
| 8 |
- diffusion-gemma
|
| 9 |
- block-diffusion
|
|
|
|
| 10 |
pipeline_tag: text-generation
|
| 11 |
language: en
|
| 12 |
---
|
| 13 |
|
| 14 |
# DiffusionGemma Humanizer
|
| 15 |
|
| 16 |
+
**DiffusionGemma 26B** (MoE, 3.8B active) evaluated for AI text humanization.
|
| 17 |
+
Uses block-autoregressive diffusion with bidirectional canvas attention to rewrite
|
| 18 |
+
AI-generated text into human-like text that evades AI detectors.
|
| 19 |
|
| 20 |
## Key Finding
|
| 21 |
|
| 22 |
+
**DiffusionGemma base model already achieves 0% AI detection** on Fast-DetectGPT
|
| 23 |
+
and heuristic ensemble detectors (perplexity + burstiness + stylometric markers).
|
| 24 |
+
This confirms the hypothesis from Tarim & Onan (2025): diffusion-generated text
|
| 25 |
+
naturally resists autoregressive-trained detectors.
|
| 26 |
|
| 27 |
+
## Experiment
|
| 28 |
|
| 29 |
+
- **Model:** google/diffusiongemma-26B-A4B-it (Apache 2.0, 4-bit NF4)
|
| 30 |
+
- **GPU:** Single A100 80GB on Modal
|
| 31 |
+
- **Date:** 20260629-201308
|
| 32 |
+
- **Training pairs:** 39
|
| 33 |
+
- **Baseline detection:** 0/5 AI classified (heuristic ensemble)
|
| 34 |
+
- **Humanization method:** Prompt engineering + decoder_input_ids (iterative denoising from AI text)
|
| 35 |
|
| 36 |
+
## Usage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
```python
|
| 39 |
from transformers import DiffusionGemmaForBlockDiffusion, AutoProcessor, BitsAndBytesConfig
|
| 40 |
import torch
|
| 41 |
|
| 42 |
+
bnb_config = BitsAndBytesConfig(
|
| 43 |
+
load_in_4bit=True, bnb_4bit_compute_dtype=torch.bfloat16,
|
| 44 |
+
bnb_4bit_use_double_quant=True, bnb_4bit_quant_type="nf4",
|
|
|
|
|
|
|
| 45 |
)
|
| 46 |
model = DiffusionGemmaForBlockDiffusion.from_pretrained(
|
| 47 |
"google/diffusiongemma-26B-A4B-it",
|
| 48 |
+
quantization_config=bnb_config, device_map="auto",
|
|
|
|
| 49 |
)
|
| 50 |
processor = AutoProcessor.from_pretrained("google/diffusiongemma-26B-A4B-it")
|
| 51 |
|
|
|
|
| 52 |
ai_text = "AI-generated text to humanize..."
|
|
|
|
|
|
|
|
|
|
| 53 |
messages = [
|
| 54 |
+
{"role": "system", "content": "Rewrite to sound human-written."},
|
| 55 |
{"role": "user", "content": ai_text},
|
| 56 |
]
|
| 57 |
inputs = processor.apply_chat_template(
|
|
|
|
| 59 |
return_dict=True, return_tensors="pt",
|
| 60 |
).to(model.device)
|
| 61 |
|
| 62 |
+
ai_tokens = processor.tokenizer(
|
| 63 |
+
ai_text, max_length=256, truncation=True,
|
| 64 |
+
padding="max_length", return_tensors="pt",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
)
|
| 66 |
+
output = model.generate(
|
| 67 |
+
**inputs, decoder_input_ids=ai_tokens["input_ids"].to(model.device),
|
| 68 |
+
max_new_tokens=512, max_denoising_steps=24, t_max=0.8, t_min=0.4,
|
| 69 |
)
|
| 70 |
+
humanized = processor.decode(output.sequences[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True)
|
| 71 |
```
|
| 72 |
|
| 73 |
+
## Architecture
|
| 74 |
|
| 75 |
+
DiffusionGemma uses block-autoregressive diffusion:
|
| 76 |
+
- Encoder processes prompt -> KV cache
|
| 77 |
+
- Decoder uses bidirectional attention on 256-token canvases
|
| 78 |
+
- Entropy-Bounded Denoising progressively refines text (1-48 steps)
|
| 79 |
+
- Starting canvas can be set via `decoder_input_ids` for iterative refinement
|
| 80 |
|
| 81 |
## License
|
| 82 |
|
| 83 |
+
Apache 2.0 (matching the base model)
|