File size: 1,984 Bytes
39e9534
 
 
 
19488ba
 
39e9534
 
19488ba
39e9534
19488ba
 
 
 
 
39e9534
 
19488ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39e9534
19488ba
 
 
39e9534
19488ba
39e9534
19488ba
 
 
 
 
39e9534
19488ba
39e9534
19488ba
 
39e9534
19488ba
 
39e9534
19488ba
39e9534
19488ba
 
 
39e9534
19488ba
39e9534
 
19488ba
 
 
 
 
39e9534
19488ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
license: mit
task_categories:
  - text-classification
language:
  - en
tags:
  - ai-generated-text-detection
  - machine-generated-text
  - academic-text
size_categories:
  - 100K<n<1M
configs:
  - config_name: default
    data_files: academic_text.parquet
---

# Academic Text: human vs AI-generated academic paragraphs

669,008 academic paragraphs for AI-generated text detection in the STEM /
academic domain.

## Composition

| source | label | rows |
|---|---|---|
| `arxiv` (papers published before 2022) | 0 (human) | 469,008 |
| `gpt-3.5-turbo` | 1 (AI) | 100,000 |
| `gemini-2.0-flash` | 1 (AI) | 100,000 |

Human paragraphs are drawn from arXiv papers published before 2022, which
predates widespread LLM authorship and so guarantees human origin. AI
paragraphs were generated through the official APIs on STEM topics matched to
the distribution of the human paragraphs.

## Columns

- `text` (string) -- the paragraph
- `label` (int) -- 0 human, 1 AI-generated
- `source` (string) -- `arxiv`, `gpt-3.5-turbo`, or `gemini-2.0-flash`

## Usage

```python
from datasets import load_dataset
ds = load_dataset("mohamedmady/Academic-Text-arxiv-gpt-gemini")["train"]
print(ds[0])
```

## Notes

The class balance is roughly 70 % human / 30 % AI. Report balanced accuracy or
class-wise recall rather than raw accuracy.

The original blank-line-separated `.txt` files are retained for provenance, but
the parquet is the canonical form: the text files carry no labels.

## Licence

The generated paragraphs are released under MIT. The human paragraphs derive
from arXiv, whose papers carry their own per-paper licences; check the terms of
the source papers before redistributing that portion.

## Citation

```bibtex
@misc{academictext2026,
  title  = {Academic Text: A large-scale academic-domain benchmark for AI-generated text detection},
  author = {Mady, Mohamed and Reschke, Johannes and Schuller, Bj\"orn},
  year   = {2026},
  howpublished = {Hugging Face dataset}
}
```