Datasets:
Update ObjectRemovalAlpha dataset card
Browse files
README.md
CHANGED
|
@@ -1,4 +1,24 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: text
|
|
@@ -22,4 +42,70 @@ configs:
|
|
| 22 |
path: data/train-*
|
| 23 |
---
|
| 24 |
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
annotations_creators:
|
| 3 |
+
- found
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
language_creators:
|
| 7 |
+
- found
|
| 8 |
+
license: apache-2.0
|
| 9 |
+
pretty_name: ObjectRemovalAlpha
|
| 10 |
+
size_categories:
|
| 11 |
+
- n<1K
|
| 12 |
+
source_datasets:
|
| 13 |
+
- lrzjason/ObjectRemovalAlpha
|
| 14 |
+
tags:
|
| 15 |
+
- object-removal
|
| 16 |
+
- image-inpainting
|
| 17 |
+
- image-editing
|
| 18 |
+
- text-to-image
|
| 19 |
+
task_categories:
|
| 20 |
+
- image-to-image
|
| 21 |
+
task_ids: []
|
| 22 |
dataset_info:
|
| 23 |
features:
|
| 24 |
- name: text
|
|
|
|
| 42 |
path: data/train-*
|
| 43 |
---
|
| 44 |
|
| 45 |
+
# Dataset Card for ObjectRemovalAlpha
|
| 46 |
+
|
| 47 |
+
## Dataset Description
|
| 48 |
+
|
| 49 |
+
- **Homepage:** https://huggingface.co/datasets/lrzjason/ObjectRemovalAlpha
|
| 50 |
+
- **Repository:** https://github.com/creative-graphic-design/huggingface-datasets/tree/main/datasets/ObjectRemovalAlpha
|
| 51 |
+
- **Original Dataset:** https://huggingface.co/datasets/lrzjason/ObjectRemovalAlpha
|
| 52 |
+
- **Hugging Face Dataset:** https://huggingface.co/datasets/creative-graphic-design/ObjectRemovalAlpha
|
| 53 |
+
- **Paper:** Not available in the original dataset release.
|
| 54 |
+
|
| 55 |
+
### Dataset Summary
|
| 56 |
+
|
| 57 |
+
ObjectRemovalAlpha is a small object-removal training dataset reformatted from `lrzjason/ObjectRemovalAlpha`. Each example contains a shared text prompt, a ground-truth image, a factual/source image, and a mask image.
|
| 58 |
+
|
| 59 |
+
The loader groups the original `_G`, `_F`, and `_M` files by numeric ID and exposes them as one row per object-removal example.
|
| 60 |
+
|
| 61 |
+
### Supported Tasks and Leaderboards
|
| 62 |
+
|
| 63 |
+
This dataset can be used for image editing, object removal, image inpainting, and mask-conditioned image generation experiments. No public leaderboard is bundled with the source dataset.
|
| 64 |
+
|
| 65 |
+
### Languages
|
| 66 |
+
|
| 67 |
+
The text prompts are in English.
|
| 68 |
+
|
| 69 |
+
## Dataset Structure
|
| 70 |
+
|
| 71 |
+
### Data Instances
|
| 72 |
+
|
| 73 |
+
```json
|
| 74 |
+
{
|
| 75 |
+
"text": "object-removal prompt",
|
| 76 |
+
"ground_truth_image": "<image>",
|
| 77 |
+
"factual_image": "<image>",
|
| 78 |
+
"mask_image": "<image>"
|
| 79 |
+
}
|
| 80 |
+
```
|
| 81 |
+
|
| 82 |
+
### Data Fields
|
| 83 |
+
|
| 84 |
+
- `text`: Prompt text shared by the original `_G`, `_F`, and `_M` files.
|
| 85 |
+
- `ground_truth_image`: Target image after removal.
|
| 86 |
+
- `factual_image`: Source image before removal.
|
| 87 |
+
- `mask_image`: Mask image indicating the removal region.
|
| 88 |
+
|
| 89 |
+
### Data Splits
|
| 90 |
+
|
| 91 |
+
| Split | Examples |
|
| 92 |
+
| --- | ---: |
|
| 93 |
+
| train | 20 |
|
| 94 |
+
|
| 95 |
+
## Dataset Creation
|
| 96 |
+
|
| 97 |
+
### Source Data
|
| 98 |
+
|
| 99 |
+
The data is loaded from the upstream Hugging Face dataset `lrzjason/ObjectRemovalAlpha` using `snapshot_download`.
|
| 100 |
+
|
| 101 |
+
### Licensing Information
|
| 102 |
+
|
| 103 |
+
The upstream dataset is marked Apache-2.0 on Hugging Face Hub.
|
| 104 |
+
|
| 105 |
+
### Citation Information
|
| 106 |
+
|
| 107 |
+
No dataset-specific paper or BibTeX citation was found in the upstream dataset release.
|
| 108 |
+
|
| 109 |
+
### Contributions
|
| 110 |
+
|
| 111 |
+
This Hugging Face dataset implementation was created by the creative-graphic-design organization to expose `lrzjason/ObjectRemovalAlpha` through a typed dataset loader.
|