Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -42,4 +42,100 @@ dataset_info:
|
|
| 42 |
num_examples: 125026
|
| 43 |
download_size: 32032878953
|
| 44 |
dataset_size: 29870625563
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
num_examples: 125026
|
| 43 |
download_size: 32032878953
|
| 44 |
dataset_size: 29870625563
|
| 45 |
+
license: apache-2.0
|
| 46 |
+
task_categories:
|
| 47 |
+
- image-classification
|
| 48 |
+
language:
|
| 49 |
+
- en
|
| 50 |
---
|
| 51 |
+
|
| 52 |
+
# AIGC Detection Benchmark Dataset
|
| 53 |
+
|
| 54 |
+
## 📝 Dataset Description
|
| 55 |
+
|
| 56 |
+
**Dataset Summary**
|
| 57 |
+
|
| 58 |
+
The AIGC Detection Benchmark Dataset is a high-quality collection of images and associated metadata designed to benchmark models for detecting and identifying the source of artificially generated content. The dataset contains a mix of real-world images and images generated by a wide array of prominent AI models, including diffusion models (like Stable Diffusion, DALL-E 2, Midjourney, ADM) and GANs (like BigGAN, StyleGAN, ProGAN).
|
| 59 |
+
|
| 60 |
+
Each image is meticulously labeled under two categories, enabling researchers to tackle two distinct, high-value computer vision tasks: binary real/fake classification and multi-class source model identification. **Note: This specific version of the dataset is designed exclusively for testing and evaluation purposes, with all data consolidated into a single test split.**
|
| 61 |
+
|
| 62 |
+
**Supported Tasks and Leaderboards**
|
| 63 |
+
|
| 64 |
+
This dataset directly supports two critical image classification tasks:
|
| 65 |
+
|
| 66 |
+
|**Task ID**|**Task Name**|**Description**| **Output Classes** |
|
| 67 |
+
| ----------- | ------------------------------ | ------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| 68 |
+
|**Task A**|Binary Veracity Classification|Classifying images as either real or fake.| 2 (real, fake) |
|
| 69 |
+
|**Task B**|AI Model Source Identification|Identifying the specific AI generation model used for images labeled as AI-Generated.| 18 (Real, ADM, BigGAN, CycleGAN, DALLE2, GauGAN, GLIDE, Midjourney, ProGAN, SD14, SD15, SDXL, StarGAN, StyleGAN, StyleGAN2, VQDM, WhichFaceIsReal, Wukong) |
|
| 70 |
+
|
| 71 |
+
**Languages**
|
| 72 |
+
|
| 73 |
+
The descriptive text, including all captions, is in English (en).
|
| 74 |
+
|
| 75 |
+
## 🗂️ Data Splits
|
| 76 |
+
|
| 77 |
+
All instances have been merged into a single test split to serve strictly as an evaluation benchmark.
|
| 78 |
+
|
| 79 |
+
|**Split**|**Number of Instances**|**Notes**|
|
| 80 |
+
|---|---|---|
|
| 81 |
+
|**test**|125,026|Used exclusively for final, unbiased model evaluation and benchmarking.|
|
| 82 |
+
|
| 83 |
+
## 💾 Dataset Structure
|
| 84 |
+
|
| 85 |
+
**Data Instances**
|
| 86 |
+
|
| 87 |
+
A single data instance consists of an image file and two distinct labels detailing its source and authenticity.
|
| 88 |
+
|
| 89 |
+
|**Field Name**|**Example Value**|**Description**|
|
| 90 |
+
|---|---|---|
|
| 91 |
+
|**image**|`<PIL.Image.Image object>`|The actual image content loaded into a PIL object.|
|
| 92 |
+
|**label**|`1`|Binary label for authenticity (Real vs. AI-Generated).|
|
| 93 |
+
|**generator**|`3`|Multi-class label for the specific generation model (or Real).|
|
| 94 |
+
|
| 95 |
+
**Data Fields**
|
| 96 |
+
|
| 97 |
+
The dataset contains the following fields:
|
| 98 |
+
|
| 99 |
+
|**Field Name**|**Data Type**|**Description**|
|
| 100 |
+
|---|---|---|
|
| 101 |
+
|**image**|`datasets.Image()`|The actual image content (e.g., .jpg, .png).|
|
| 102 |
+
|**label**|`datasets.ClassLabel`|Task A: Binary label for image veracity.|
|
| 103 |
+
|**generator**|`datasets.ClassLabel`|Task B: Label specifying the generation source/model.|
|
| 104 |
+
|
| 105 |
+
## 🏷️ Label Definitions
|
| 106 |
+
|
| 107 |
+
The two label fields use the following mappings:
|
| 108 |
+
|
| 109 |
+
**`label` (Binary Veracity Classification)**
|
| 110 |
+
|
| 111 |
+
|**Label**|**Value**|**Description**|
|
| 112 |
+
|---|---|---|
|
| 113 |
+
|**real**|`0`|Image is a real photograph/non-AI generated.|
|
| 114 |
+
|**fake**|`1`|Image was created by an AI generation model.|
|
| 115 |
+
|
| 116 |
+
**`generator` (Model Source Identification)**
|
| 117 |
+
|
| 118 |
+
| **Label** | **Value** | **Description** |
|
| 119 |
+
| ------------------- | --------- | --------------------------------------------------------- |
|
| 120 |
+
| **Real** | `0` | Real image (no AI generation involved). |
|
| 121 |
+
| **ADM** | `1` | Generated by Ablated Diffusion Model (Guided Diffusion). |
|
| 122 |
+
| **BigGAN** | `2` | Generated by BigGAN. |
|
| 123 |
+
| **CycleGAN** | `3` | Generated by CycleGAN. |
|
| 124 |
+
| **DALLE2** | `4` | Generated by OpenAI's DALL-E 2. |
|
| 125 |
+
| **GauGAN** | `5` | Generated by GauGAN (SPADE). |
|
| 126 |
+
| **GLIDE** | `6` | Generated by GLIDE. |
|
| 127 |
+
| **Midjourney** | `7` | Generated by Midjourney. |
|
| 128 |
+
| **ProGAN** | `8` | Generated by ProGAN (Progressive GAN). |
|
| 129 |
+
| **SD14** | `9` | Generated by Stable Diffusion 1.4. |
|
| 130 |
+
| **SD15** | `10` | Generated by Stable Diffusion 1.5. |
|
| 131 |
+
| **SDXL** | `11` | Generated by Stable Diffusion XL. |
|
| 132 |
+
| **StarGAN** | `12` | Generated by StarGAN. |
|
| 133 |
+
| **StyleGAN** | `13` | Generated by StyleGAN. |
|
| 134 |
+
| **StyleGAN2** | `14` | Generated by StyleGAN2. |
|
| 135 |
+
| **VQDM** | `15` | Generated by Vector Quantized Diffusion Model. |
|
| 136 |
+
| **WhichFaceIsReal** | `16` | Real human face sourced from the WhichFaceIsReal dataset. |
|
| 137 |
+
| **Wukong** | `17` | Generated by the Wukong diffusion model. |
|
| 138 |
+
|
| 139 |
+
## 🔗 Sources
|
| 140 |
+
|
| 141 |
+
- **Original dataset**: [Ekko-zn/AIGCDetectBenchmark](https://github.com/Ekko-zn/AIGCDetectBenchmark).
|