|
--- |
|
license: cc |
|
pretty_name: Semi-Truths |
|
size_categories: |
|
- 10K<n<100K |
|
--- |
|
|
|
# Semi-Truths: The Evaluation Sample # |
|
|
|
**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?** |
|
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. |
|
Each augmented image includes detailed metadata for standardized, targeted evaluation of detector robustness. |
|
|
|
π Leverage the Semi-Truths dataset to understand the sensitivities of the latest AI-augmented image detectors, to various sizes of edits and semantic changes! |
|
|
|
<!-- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/666454f1f99defe86aca3882/AaKKr-VDqcsml4sDcYLrh.png) --> |
|
<centering><img src="https://cdn-uploads.huggingface.co/production/uploads/666454f1f99defe86aca3882/AaKKr-VDqcsml4sDcYLrh.png" alt="head_figure" width="800"/></centering> |
|
|
|
<!-- ## Loading Dataset ## |
|
|
|
``` |
|
from datasets import load_dataset |
|
dataset = load_dataset('hoffman-lab/SkyScenes',name="H_35_P_45 images") |
|
``` --> |
|
|
|
## Dataset Structure ## |
|
|
|
The general structure of the Semi-Truths Dataset is as follows: |
|
- The original, real image and mask data can be found in the folder `original` |
|
- Augmented images created with Diffusion Inpainting are in `inpainting` |
|
- Prompt-edited images are in the folder `p2p` |
|
- Prompt-edited image masks, computed post-augmentation, are in the folder `p2p_masks` |
|
- All metadata can be found in `metadata.csv`, including labels, datasets, entities, augmentation methods, diffusion models, change metrics, and so on. |
|
|
|
``` |
|
βββ metadata.csv (Image, Mask, and Change Information) |
|
βββ original (Real Images/Mask Pairs) |
|
β βββ images |
|
β β βββ ADE20K |
|
β β βββ CelebAHQ |
|
β β βββ CityScapes |
|
β β βββ HumanParsing |
|
β β βββ OpenImages |
|
β β βββ SUN_RGBD |
|
β βββ masks |
|
β βββ ADE20K |
|
β βββ CelebAHQ |
|
β βββ CityScapes |
|
β βββ HumanParsing |
|
β βββ OpenImages |
|
β βββ SUN_RGBD |
|
βββ inpainting (Augmented Images) |
|
β βββ ADE20K |
|
β βββ CelebAHQ |
|
β βββ CityScapes |
|
β βββ HumanParsing |
|
β βββ OpenImages |
|
β βββ SUN_RGBD |
|
βββ p2p (Augmented Images) |
|
βββ ADE20K |
|
βββ CelebAHQ |
|
βββ CityScapes |
|
βββ HumanParsing |
|
βββ OpenImages |
|
βββ SUN_RGBD |
|
``` |
|
|