nebula commited on
Commit
ce647ee
·
verified ·
1 Parent(s): 48be471

Add OpenSDID+ dataset card

Browse files
Files changed (1) hide show
  1. README.md +118 -0
README.md CHANGED
@@ -1,4 +1,21 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: key
@@ -40,3 +57,104 @@ configs:
40
  - split: flux
41
  path: data/flux-*
42
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: OpenSDID+
3
+ license: cc-by-sa-4.0
4
+ task_categories:
5
+ - image-classification
6
+ - image-segmentation
7
+ size_categories:
8
+ - 100K<n<1M
9
+ tags:
10
+ - diffusion
11
+ - image-generation
12
+ - ai-generated-content
13
+ - deepfake-detection
14
+ - synthetic-image-detection
15
+ - image-forensics
16
+ - localization
17
+ - opensdi
18
+ - arxiv:2503.19653
19
  dataset_info:
20
  features:
21
  - name: key
 
57
  - split: flux
58
  path: data/flux-*
59
  ---
60
+
61
+ # OpenSDID+
62
+
63
+ OpenSDID+ is an extended release of the OpenSDI dataset. It complements the original SD1.5 training split with large-scale images from the remaining OpenSDI generators: SD2, SD3, SDXL, and FLUX.
64
+
65
+ The dataset follows the OpenSDI challenge introduced in **"OpenSDI: Spotting Diffusion-Generated Images in the Open World"**. OpenSDI studies detection and localization of diffusion-generated images under realistic open-world settings, including diverse user intentions, evolving diffusion models, and both global and local image manipulations.
66
+
67
+ ## Relationship to OpenSDI
68
+
69
+ The original OpenSDI release is split across:
70
+
71
+ - [OpenSDI_train](https://huggingface.co/datasets/nebula/OpenSDI_train): SD1.5 training data
72
+ - [OpenSDI_test](https://huggingface.co/datasets/nebula/OpenSDI_test): benchmark test data across OpenSDI generators
73
+
74
+ This repository provides the expanded generator-specific data for SD2, SD3, SDXL, and FLUX. It is intended for researchers who want broader generator coverage beyond the original SD1.5 training split.
75
+
76
+ ## Dataset Details
77
+
78
+ | Split | Generator family | Samples |
79
+ | --- | --- | ---: |
80
+ | `sd2` | Stable Diffusion 2.x | 182,196 |
81
+ | `sd3` | Stable Diffusion 3 | 211,676 |
82
+ | `sdxl` | Stable Diffusion XL | 200,302 |
83
+ | `flux` | FLUX | 208,344 |
84
+ | **Total** | | **802,518** |
85
+
86
+ Each example contains:
87
+
88
+ - `key`: sample identifier
89
+ - `image`: input image
90
+ - `mask`: manipulation/localization mask
91
+ - `label`: binary class label, where `0 = real` and `1 = fake`
92
+
93
+ ## Supported Tasks
94
+
95
+ ### Diffusion-Generated Image Detection
96
+
97
+ Classify whether an image is real or diffusion-generated.
98
+
99
+ ### Manipulation Localization
100
+
101
+ Use the mask annotations to evaluate or train pixel-level localization methods for locally manipulated images.
102
+
103
+ ## Usage
104
+
105
+ ```python
106
+ from datasets import load_dataset
107
+
108
+ # Choose one generator split: "sd2", "sd3", "sdxl", or "flux".
109
+ ds = load_dataset("nebula/OpenSDIDplus", split="sdxl", streaming=True)
110
+ sample = next(iter(ds))
111
+ print(sample.keys())
112
+ print(sample["label"])
113
+ ```
114
+
115
+ For full-scale training, streaming or selective split download is recommended because the release is large.
116
+
117
+ ## Intended Uses
118
+
119
+ OpenSDID+ is intended for academic research on:
120
+
121
+ - AI-generated image detection
122
+ - diffusion-generated image detection
123
+ - image manipulation localization
124
+ - open-world image forensics
125
+ - generalization across unseen or evolving text-to-image generators
126
+
127
+ ## Limitations
128
+
129
+ OpenSDID+ should be interpreted as an extension of the OpenSDI benchmark rather than a standalone replacement for the original release. The splits in this repository cover SD2, SD3, SDXL, and FLUX; use [OpenSDI_train](https://huggingface.co/datasets/nebula/OpenSDI_train) for the original SD1.5 training split.
130
+
131
+ The dataset reflects the generator families, prompts, editing procedures, and image sources used in OpenSDI. Performance on OpenSDID+ may not fully predict robustness to future generators, post-processing pipelines, social media compression, or real-world distribution shifts.
132
+
133
+ ## Ethical Considerations
134
+
135
+ This dataset is released for research on synthetic media detection and image forensics. Users should not use it to create deceptive content, identify private individuals, or deploy forensic systems without appropriate validation, fairness analysis, and legal review.
136
+
137
+ Some generated or source images may contain sensitive or biased content inherited from public image and generative model ecosystems. Users should apply appropriate filtering and access controls where needed.
138
+
139
+ ## Citation
140
+
141
+ If you use OpenSDID+ or the OpenSDI benchmark, please cite:
142
+
143
+ ```bibtex
144
+ @InProceedings{Wang_2025_CVPR,
145
+ author = {Wang, Yabin and Huang, Zhiwu and Hong, Xiaopeng},
146
+ title = {OpenSDI: Spotting Diffusion-Generated Images in the Open World},
147
+ booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
148
+ month = {June},
149
+ year = {2025},
150
+ pages = {4291--4301}
151
+ }
152
+ ```
153
+
154
+ ## Links
155
+
156
+ - Paper: https://openaccess.thecvf.com/content/CVPR2025/html/Wang_OpenSDI_Spotting_Diffusion-Generated_Images_in_the_Open_World_CVPR_2025_paper.html
157
+ - arXiv: https://arxiv.org/abs/2503.19653
158
+ - Project page and code: https://github.com/iamwangyabin/OpenSDI
159
+ - OpenSDI training data: https://huggingface.co/datasets/nebula/OpenSDI_train
160
+ - OpenSDI test data: https://huggingface.co/datasets/nebula/OpenSDI_test