--- license: cc pretty_name: Semi-Truths size_categories: - 10K head_figure ## Directions ## 🌅 **I want to use the Semi-Truths dataset to evaluate my detector!** * The `metadata.csv` file organizes all image file information under columns `image_id` and `image_path`. * Leverage this information to pass both real and fake images to the detector you're evaluating. * Append the detector predictions to the metadata file. * Our metadata contains data attributes and various change metrics that describe the kind of augmentation that occured. * By grouping predictions and computing metrics on images defined by a type of augmentation, you can gauge the specific strengths and weakness of the detecor! To leverage our evaluation and analysis protocols, please visit our Github at: [Coming Soon! ⏳] ## 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 (inpainted augmented images) │ ├── ADE20K │ ├── CelebAHQ │ ├── CityScapes │ ├── HumanParsing │ ├── OpenImages │ └── SUN_RGBD └── p2p (prompt-based augmented images) ├── ADE20K ├── CelebAHQ ├── CityScapes ├── HumanParsing ├── OpenImages └── SUN_RGBD ``` # How to download Semi Truths? You can download the whole dataset Semi Truths by cloning the dataset using the command: git clone https://huggingface.co/datasets/semi-truths/Semi-Truths-Evalset