mohamedmady commited on
Commit
39e9534
·
verified ·
1 Parent(s): 3f50fa2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -3
README.md CHANGED
@@ -1,3 +1,60 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - AI-Generated
9
+ - Human-Generated
10
+ - Academic
11
+ pretty_name: AI-Generated Academic Text Detection
12
+ size_categories:
13
+ - 100K<n<1M
14
+ ---
15
+ language: en
16
+ license: cc-by-4.0
17
+ task_categories:
18
+ - text-classification
19
+ tags:
20
+ - ai-generated-text-detection
21
+ - academic-text
22
+ - distribution-shift
23
+ ---
24
+
25
+ # Academic Text Dataset
26
+
27
+ **A large-scale academic-domain benchmark for AI-generated text detection.**
28
+
29
+ This dataset was specifically constructed to evaluate robustness of AI-text detectors under realistic distribution shift in the academic (STEM) domain.
30
+
31
+ ## Dataset Description
32
+
33
+ The dataset contains:
34
+ - **469,008** human-written arXiv abstracts (collected from papers published **before 2022**, guaranteeing purely human-generated text)
35
+ - **100,000** AI-generated abstracts produced by **GPT-3.5 Turbo**
36
+ - **100,000** AI-generated abstracts produced by **Gemini 2.0 Flash**
37
+
38
+ **Total: 669,008 samples**
39
+
40
+ The AI texts were generated using the official APIs on STEM topics carefully matched to the distribution of the human arXiv abstracts, ensuring close semantic and topical alignment.
41
+
42
+ ## Usage in Our Paper
43
+
44
+ We evaluate our best model (`DeBERTa-v3-base+FeatAttn`) under a **fixed-threshold protocol** (threshold calibrated once on HC3 PLUS validation and kept fixed).
45
+ On this dataset the model achieves:
46
+ - Overall balanced accuracy: **81.09%**
47
+ - GPT-3.5 Turbo detection: **100.0%**
48
+ - Gemini 2.0 Flash detection: **93.25%**
49
+ - Human (arXiv) recall: **75.57%**
50
+
51
+ ## Recommended Citation
52
+
53
+ ```bibtex
54
+ @misc{mady2026academictext,
55
+ author = {Mohamed Mady and Johannes Reschke and Björn Schuller},
56
+ title = {Academic Text Dataset: A large-scale academic-domain benchmark for AI-generated text detection},
57
+ year = {2026},
58
+ howpublished = {\url{https://huggingface.co/datasets/YOUR_USERNAME/academic-text-detection}},
59
+ }
60
+ ---