semi-truths commited on
Commit
522f13e
β€’
1 Parent(s): ce1a51e

Update dataset card w/ data struct info

Browse files
Files changed (1) hide show
  1. README.md +56 -6
README.md CHANGED
@@ -5,13 +5,63 @@ size_categories:
5
  - 10K<n<100K
6
  ---
7
 
8
- This is the evaluation sample of Semi-Truths dataset. Semi-Truths contains AI-augmented images featuring varying degrees of targeted and localized edits, created using diverse augmentation methods, diffusion models, and data distributions.
9
- This resource was created for the targeted evaluation of AI-genertaed image detectors.
10
 
11
- The structure of the uploaded data is as follows:
12
- - The original image data is in the folder `original`
13
- - Inpainting augmented images are in the folder `inpainting`
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
- - Data has been uploaded in 3 tar files.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```