nielsr HF Staff commited on
Commit
42f73dd
·
verified ·
1 Parent(s): f865fa5

Add model card for REVEAL

Browse files

This PR adds a model card for the REVEAL model presented in the paper "Reasoning-Aware AIGC Detection via Alignment and Reinforcement".

The model card includes:
- Links to the paper, project page, and code repository.
- Metadata for the `text-classification` pipeline and the `transformers` library.

Files changed (1) hide show
  1. README.md +19 -0
README.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ pipeline_tag: text-classification
4
+ ---
5
+
6
+ # REVEAL: Reasoning-Aware AIGC Detection via Alignment and Reinforcement
7
+
8
+ REVEAL is a detection framework that generates interpretable reasoning chains before classifying text as AI-generated or human-written. It is designed to be robust against evolving Large Language Models (LLMs) and provides transparent, interpretable results.
9
+
10
+ - **Paper:** [Reasoning-Aware AIGC Detection via Alignment and Reinforcement](https://huggingface.co/papers/2604.19172)
11
+ - **Project Page:** [https://aka.ms/reveal](https://aka.ms/reveal)
12
+ - **Repository:** [https://github.com/microsoft/AnthropomorphicIntelligence](https://github.com/microsoft/AnthropomorphicIntelligence)
13
+
14
+ ## Overview
15
+ REVEAL addresses the challenge of reliable AI-generated content (AIGC) detection by introducing a reasoning-aware approach. The model uses a two-stage training strategy:
16
+ 1. **Supervised Fine-Tuning (SFT):** To establish the model's capability to generate logical reasoning chains.
17
+ 2. **Reinforcement Learning (RL):** To improve classification accuracy, logical consistency, and reduce hallucinations.
18
+
19
+ The framework was trained on the **AIGC-text-bank**, a comprehensive multi-domain dataset featuring diverse LLM sources and authorship scenarios.