semi-truths
commited on
Commit
β’
522f13e
1
Parent(s):
ce1a51e
Update dataset card w/ data struct info
Browse files
README.md
CHANGED
@@ -5,13 +5,63 @@ size_categories:
|
|
5 |
- 10K<n<100K
|
6 |
---
|
7 |
|
8 |
-
|
9 |
-
This resource was created for the targeted evaluation of AI-genertaed image detectors.
|
10 |
|
11 |
-
|
12 |
-
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
- Prompt-edited images are in the folder `p2p`
|
15 |
- Prompt-edited image masks, computed post-augmentation, are in the folder `p2p_masks`
|
16 |
- All metadata can be found in `metadata.csv`, including labels, datasets, entities, augmentation methods, diffusion models, change metrics, and so on.
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
- 10K<n<100K
|
6 |
---
|
7 |
|
8 |
+
# Semi-Truths: The Evaluation Sample #
|
|
|
9 |
|
10 |
+
<!-- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/666454f1f99defe86aca3882/AaKKr-VDqcsml4sDcYLrh.png) -->
|
11 |
+
<centering><img src="https://cdn-uploads.huggingface.co/production/uploads/666454f1f99defe86aca3882/AaKKr-VDqcsml4sDcYLrh.png" alt="head_figure" width="800"/></centering>
|
12 |
+
|
13 |
+
|
14 |
+
**Recent efforts have developed AI-generated image detectors claiming robustness against various augmentations, but their effectiveness remains unclear. Can these systems detect varying degrees of augmentation?**
|
15 |
+
To address these questions, we introduce **Semi-Truths**, featuring 27,600 real images, 245,300 masks, and 850,200 AI-augmented images featuring varying degrees of targeted and localized edits, created using diverse augmentation methods, diffusion models, and data distributions.
|
16 |
+
Each augmented image includes detailed metadata for standardized, targeted evaluation of detector robustness.
|
17 |
+
|
18 |
+
π Leverage the Semi-Truths dataset to understand the sensitivities of the latest AI-augmented image detectors, to various sizes of edits and semantic changes!
|
19 |
+
|
20 |
+
<!-- ## Loading Dataset ##
|
21 |
+
|
22 |
+
```
|
23 |
+
from datasets import load_dataset
|
24 |
+
dataset = load_dataset('hoffman-lab/SkyScenes',name="H_35_P_45 images")
|
25 |
+
``` -->
|
26 |
+
|
27 |
+
## Dataset Structure ##
|
28 |
+
|
29 |
+
The general structure of the Semi-Truths Dataset is as follows:
|
30 |
+
- The original, real image and mask data can be found in the folder `original`
|
31 |
+
- Augmented images created with Diffusion Inpainting are in `inpainting`
|
32 |
- Prompt-edited images are in the folder `p2p`
|
33 |
- Prompt-edited image masks, computed post-augmentation, are in the folder `p2p_masks`
|
34 |
- All metadata can be found in `metadata.csv`, including labels, datasets, entities, augmentation methods, diffusion models, change metrics, and so on.
|
35 |
+
|
36 |
+
```
|
37 |
+
βββ metadata.csv (Image, Mask, and Change Information)
|
38 |
+
βββ original (Real Images/Mask Pairs)
|
39 |
+
β βββ images
|
40 |
+
β β βββ ADE20K
|
41 |
+
β β βββ CelebAHQ
|
42 |
+
β β βββ CityScapes
|
43 |
+
β β βββ HumanParsing
|
44 |
+
β β βββ OpenImages
|
45 |
+
β β βββ SUN_RGBD
|
46 |
+
β βββ masks
|
47 |
+
β βββ ADE20K
|
48 |
+
β βββ CelebAHQ
|
49 |
+
β βββ CityScapes
|
50 |
+
β βββ HumanParsing
|
51 |
+
β βββ OpenImages
|
52 |
+
β βββ SUN_RGBD
|
53 |
+
βββ inpainting (Augmented Images)
|
54 |
+
β βββ ADE20K
|
55 |
+
β βββ CelebAHQ
|
56 |
+
β βββ CityScapes
|
57 |
+
β βββ HumanParsing
|
58 |
+
β βββ OpenImages
|
59 |
+
β βββ SUN_RGBD
|
60 |
+
βββ p2p (Augmented Images)
|
61 |
+
βββ ADE20K
|
62 |
+
βββ CelebAHQ
|
63 |
+
βββ CityScapes
|
64 |
+
βββ HumanParsing
|
65 |
+
βββ OpenImages
|
66 |
+
βββ SUN_RGBD
|
67 |
+
```
|