Views
No views yet
microsoft/deberta-v3-large classifier fine-tuned for AI-generated text (AIG) detection using Empirical X-Risk Minimization (EXM). It is trained on the DACTYL-train dataset — a challenging corpus of one-shot/few-shot and continued-pre-trained (CPT) model generations — and evaluated on a held-out test set containing unseen models not present during training, demonstrating robust out-of-distribution generalization.The DACTYL test set is particularly challenging: it contains one-shot/few-shot generations (where LLMs are prompted with human text as an example) and outputs from domain-specific CPT models — generation conditions that most existing detectors were not designed for and struggle with.
Note on external datasets: The 8 external benchmark datasets consist predominantly of zero-shot generations, which are stylistically further from human writing than the one-shot/few-shot generations DACTYL was trained on. This represents a distribution shift in the opposite direction — DACTYL is optimized for harder, more human-like AI text, and these datasets are comparatively easier. DACTYL's competitive performance on them despite this mismatch is encouraging, but scores on the external datasets should not be taken as the primary measure of its intended capability.
| Dataset | DACTYL | Desklib | Oxidane | SuperAnnotate | Fakespot |
|---|---|---|---|---|---|
| APT-Eval | 0.797 | 0.756 | 0.760 | 0.808 | 0.727 |
| BEEMO | 0.793 | 0.798 | 0.772 | 0.728 | 0.784 |
| CoCoNUTS | 0.976 | 0.984 | 0.879 | 0.989 | 0.981 |
| DACTYL | 0.995 | 0.930 | 0.894 | 0.842 | 0.871 |
| DetectRL | 0.909 | 0.937 | 0.893 | 0.887 | 0.940 |
| Dolly-15K Cosmopedia-20K | 0.996 | 0.999 | 0.980 | 0.948 | 0.997 |
| OriginalityAI | 0.849 | 0.809 | 0.607 | 0.780 | 0.898 |
| RealDet - ENG | 0.870 | 0.986 | 0.938 | 0.924 | 0.975 |
| UChicagoBooth | 0.912 | 0.938 | 0.930 | 0.916 | 0.946 |
| Mean | 0.900 | 0.904 | 0.850 | 0.869 | 0.902 |
| Dataset | DACTYL | Desklib | Oxidane | SuperAnnotate | Fakespot |
|---|---|---|---|---|---|
| APT-Eval | 0.381 | 0.370 | 0.439 | 0.432 | 0.386 |
| BEEMO | 0.652 | 0.631 | 0.517 | 0.598 | 0.616 |
| CoCoNUTS | 0.807 | 0.890 | 0.483 | 0.883 | 0.871 |
| DACTYL | 0.975 | 0.786 | 0.676 | 0.711 | 0.786 |
| DetectRL | 0.821 | 0.863 | 0.789 | 0.799 | 0.842 |
| Dolly-15K Cosmopedia-20K | 0.946 | 0.661 | 0.507 | 0.670 | 0.769 |
| OriginalityAI | 0.771 | 0.713 | 0.319 | 0.677 | 0.828 |
| RealDet - ENG | 0.792 | 0.889 | 0.652 | 0.770 | 0.839 |
| UChicagoBooth | 0.806 | 0.846 | 0.722 | 0.803 | 0.856 |
| Mean | 0.772 | 0.739 | 0.567 | 0.705 | 0.755 |
Note: TheAPT-Evaldataset yields low F1 scores across all classifiers at the default threshold of 0.5. The relatively higher AUROC (~0.80) on this dataset suggests the classifier retains discriminative ability but may benefit from threshold calibration for this domain.
1{
2 "training_split": "training",
3 "evaluation_split": "testing",
4 "num_epochs": 1,
5 "model_path": "microsoft/deberta-v3-large",
6 "tokenizer": "microsoft/deberta-v3-large",
7 "optimizer": "SOTAs",
8 "optimizer_type": "libauc",
9 "optimizer_args": {
10 "lr": 1e-05
11 },
12 "loss_fn": "tpAUC_KL_Loss",
13 "reset_classification_head": false,
14 "loss_type": "libauc",
15 "loss_fn_args": {
16 "data_len": 466005
17 },
18 "needs_loss_fn_as_parameter": false,
19 "training_args": {
20 "batch_size": 16,
21 "needs_sampler": true,
22 "needs_index": true,
23 "shuffle": false,
24 "sampling_rate": 0.5,
25 "apply_sigmoid": true
26 },
27}1@misc{thorat2025dactyl,
2 title = {DACTYL: Diverse Adversarial Corpus of Texts Yielded from Large Language Models},
3 author = {Shantanu Thorat and Andrew Caines},
4 year = {2025},
5 eprint = {2508.00619},
6 archivePrefix = {arXiv},
7 primaryClass = {cs.CL},
8 url = {https://arxiv.org/abs/2508.00619}
9}