Add model card for REVEAL
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
pipeline_tag: text-classification
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# REVEAL: Reasoning-Aware AIGC Detection
|
| 7 |
+
|
| 8 |
+
REVEAL (Reasoning-Aware AIGC Detection via Alignment and Reinforcement) is a detection framework designed to identify AI-generated content (AIGC) by generating interpretable reasoning chains before final classification.
|
| 9 |
+
|
| 10 |
+
This model was introduced in the paper [Reasoning-Aware AIGC Detection via Alignment and Reinforcement](https://huggingface.co/papers/2604.19172).
|
| 11 |
+
|
| 12 |
+
## Resources
|
| 13 |
+
- **Paper:** [Reasoning-Aware AIGC Detection via Alignment and Reinforcement](https://huggingface.co/papers/2604.19172)
|
| 14 |
+
- **Project Page:** [https://aka.ms/reveal](https://aka.ms/reveal)
|
| 15 |
+
- **GitHub Repository:** [https://github.com/microsoft/AnthropomorphicIntelligence](https://github.com/microsoft/AnthropomorphicIntelligence)
|
| 16 |
+
|
| 17 |
+
## Introduction
|
| 18 |
+
The rapid advancement of Large Language Models (LLMs) has increased the need for reliable AIGC detection. REVEAL addresses this by proposing a detection framework that generates interpretable reasoning chains before classification. The approach utilizes a two-stage training strategy:
|
| 19 |
+
1. **Supervised Fine-Tuning (SFT):** Used to establish initial reasoning capabilities.
|
| 20 |
+
2. **Reinforcement Learning (RL):** Used to improve detection accuracy, logical consistency, and reduce hallucinations in the reasoning process.
|
| 21 |
+
|
| 22 |
+
The model is trained on **AIGC-text-bank**, a comprehensive multi-domain dataset featuring diverse LLM sources and authorship scenarios to ensure robust performance across various generative models.
|
| 23 |
+
|
| 24 |
+
## Citation
|
| 25 |
+
If you find this work useful, please cite:
|
| 26 |
+
```bibtex
|
| 27 |
+
@article{reveal2026,
|
| 28 |
+
title={Reasoning-Aware AIGC Detection via Alignment and Reinforcement},
|
| 29 |
+
author={Authors of the paper},
|
| 30 |
+
journal={arXiv preprint arXiv:2604.19172},
|
| 31 |
+
year={2026}
|
| 32 |
+
}
|
| 33 |
+
```
|