nielsr HF Staff commited on
Commit
969b568
·
verified ·
1 Parent(s): 130140e

Improve dataset card: Add metadata, links, abstract summary, and detection methods

Browse files

This pull request aims to enhance the `AIGIBench` dataset card by:

- Adding `task_categories: ['image-classification']` to the metadata, aligning with the dataset's purpose of evaluating AI-generated image detectors.
- Including `tags: ['ai-generated-image-detection', 'deepfake-detection', 'generative-models', 'benchmark']` for better discoverability.
- Adding explicit links to the paper ([Hugging Face Papers page](https://huggingface.co/papers/2505.12335)) and the [GitHub repository](https://github.com/HorizonTEL/AIGIBench) at the top of the card.
- Integrating a concise summary from the paper's abstract to provide immediate context.
- Integrating the "Detection Methods" section from the GitHub README to provide more context on how the dataset is used.
- Updating the citation section to use the `@inproceedings` format from the GitHub README, reflecting its acceptance at NeurIPS 2025.

These changes will make the dataset card more informative and easier to navigate for researchers.

Files changed (1) hide show
  1. README.md +30 -17
README.md CHANGED
@@ -1,6 +1,14 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
3
  ---
 
4
  <div align="center">
5
  <br>
6
  <h1>Is Artificial Intelligence Generated Image Detection a Solved Problem?</h1>
@@ -16,19 +24,11 @@ license: cc-by-nc-sa-4.0
16
 
17
  <sup>1</sup>Nanjing University of Information Science and Technology <sup>2</sup>University of Siena
18
 
19
- <!-- <p align="center">
20
- <a href='https://github.com/HorizonTEL/AIGIBench'>
21
- <img src='https://img.shields.io/badge/Project-Page-pink?style=flat&logo=Google%20chrome&logoColor=pink'>
22
- </a>
23
- <a href='https://arxiv.org/abs/2505.12335'>
24
- <img src='https://img.shields.io/badge/Arxiv-2406.19435-A42C25?style=flat&logo=arXiv&logoColor=A42C25'>
25
- </a>
26
- <a href='https://arxiv.org/pdf/2505.12335'>
27
- <img src='https://img.shields.io/badge/Paper-PDF-yellow?style=flat&logo=arXiv&logoColor=yellow'>
28
- </a>
29
- </p>
30
- -->
31
- </div>
32
 
33
  **This repository is the official dataset of the AIGIBench.**
34
 
@@ -105,13 +105,26 @@ AIGIBench comprehensively tests the performance of the detector and builds a tes
105
  │ │ ├── ...
106
  ```
107
 
108
- ## Citation
 
 
 
 
 
 
 
 
 
 
 
 
109
 
110
- ```
111
- @article{li2025artificial,
 
112
  title={Is Artificial Intelligence Generated Image Detection a Solved Problem?},
113
  author={Li, Ziqiang and Yan, Jiazhen and He, Ziwen and Zeng, Kai and Jiang, Weiwei and Xiong, Lizhi and Fu, Zhangjie},
114
- journal={arXiv preprint arXiv:2505.12335},
115
  year={2025}
116
  }
117
  ```
 
1
  ---
2
  license: cc-by-nc-sa-4.0
3
+ task_categories:
4
+ - image-classification
5
+ tags:
6
+ - ai-generated-image-detection
7
+ - deepfake-detection
8
+ - generative-models
9
+ - benchmark
10
  ---
11
+
12
  <div align="center">
13
  <br>
14
  <h1>Is Artificial Intelligence Generated Image Detection a Solved Problem?</h1>
 
24
 
25
  <sup>1</sup>Nanjing University of Information Science and Technology <sup>2</sup>University of Siena
26
 
27
+ </div>
28
+
29
+ [Paper](https://huggingface.co/papers/2505.12335) | [GitHub Repository](https://github.com/HorizonTEL/AIGIBench)
30
+
31
+ AIGIBench is a comprehensive benchmark designed to rigorously evaluate the robustness and generalization capabilities of state-of-the-art Artificial Intelligence Generated Image (AIGI) detectors. It simulates real-world challenges through four core tasks: multi-source generalization, robustness to image degradation, sensitivity to data augmentation, and impact of test-time pre-processing.
 
 
 
 
 
 
 
 
32
 
33
  **This repository is the official dataset of the AIGIBench.**
34
 
 
105
  │ │ ├── ...
106
  ```
107
 
108
+ ## 🔍Detection Methods
109
+ We use the official code for all detection codes and make unified modifications to the input and output. The code we use for training in Setting-II is publicly available above, the corresponding pre-trained checkpoints are publicly available on [Huggingface](https://huggingface.co/HorizonTEL/AIGIBench). Of course, if you need the code from the original paper, the following is the corresponding detection code in the paper:
110
+ - [ResNet-50](https://github.com/huggingface/pytorch-image-models/tree/v0.6.12/timm): Deep Residual Learning for Image Recognition
111
+ - [CNNDetection](https://github.com/PeterWang512/CNNDetection): CNN-generated images are surprisingly easy to spot...for now
112
+ - [GramNet](https://github.com/liuzhengzhe/Global_Texture_Enhancement_for_Fake_Face_Detection_in_the-Wild): Global Texture Enhancement for Fake Face Detection in the Wild
113
+ - [LGrad](https://github.com/chuangchuangtan/LGrad): Learning on Gradients: Generalized Artifacts Representation for GAN-Generated Images Detection
114
+ - [CLIPDetection](https://github.com/WisconsinAIVision/UniversalFakeDetect): Towards Universal Fake Image Detectors that Generalize Across Generative Models
115
+ - [FreqNet](https://github.com/chuangchuangtan/FreqNet-DeepfakeDetection): FreqNet: A Frequency-domain Image Super-Resolution Network with Dicrete Cosine Transform
116
+ - [NPR](https://github.com/chuangchuangtan/NPR-DeepfakeDetection): Rethinking the Up-Sampling Operations in CNN-based Generative Network for Generalizable Deepfake Detection
117
+ - [DFFreq](https://arxiv.org/abs/2501.15253): Dual Frequency Branch Framework with Reconstructed Sliding Windows Attention for AI-Generated Image Detection
118
+ - [LaDeDa](https://github.com/barcavia/RealTime-DeepfakeDetection-in-the-RealWorld): Real-Time Deepfake Detection in the Real-World
119
+ - [AIDE](https://github.com/shilinyan99/AIDE): A Sanity Check for AI-generated Image Detection
120
+ - [SAFE](https://github.com/Ouxiang-Li/SAFE): Improving Synthetic Image Detection Towards Generalization: An Image Transformation Perspectives
121
 
122
+ ## Citation
123
+ ```bibtex
124
+ @inproceedings{li2025artificial,
125
  title={Is Artificial Intelligence Generated Image Detection a Solved Problem?},
126
  author={Li, Ziqiang and Yan, Jiazhen and He, Ziwen and Zeng, Kai and Jiang, Weiwei and Xiong, Lizhi and Fu, Zhangjie},
127
+ booktitle={Advances in Neural Information Processing Systems},
128
  year={2025}
129
  }
130
  ```