File size: 4,928 Bytes
291ee64 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | ---
license: apache-2.0
task_categories:
- image-to-image
tags:
- image-generation
- benchmark
- evaluation
---
# ConceptEdit: Unlocking the Potential of Image Editing via Concept Scaling and Dense Supervision
[](https://arxiv.org/abs/2608.16812) [](https://github.com/inclusionAI/ConceptEdit) [](https://huggingface.co/datasets/inclusionAI/ConceptEdit-12M) [](https://huggingface.co/datasets/inclusionAI/ConceptEdit-Bench)
ConceptEdit-Bench is the evaluation benchmark for ConceptEdit. It contains 1,000 curated image editing test cases across 6 major editing categories. Each test case includes a source image and a JSON metadata file with the edit instruction, taxonomy information, and a relative path to the source image.
The benchmark evaluation code is provided in the ConceptEdit GitHub repository:
```text
https://github.com/inclusionAI/ConceptEdit
```
## Files
This Hugging Face dataset repository provides the benchmark data package:
```text
conceptbench_data.tar
```
The tar file contains one top-level directory:
```text
data/
```
## How to extract
Extract the benchmark package with:
```bash
mkdir -p ConceptEdit-Bench
tar -xf conceptbench_data.tar -C ConceptEdit-Bench
```
After extraction, the expected layout is:
```text
ConceptEdit-Bench/
└── data/
├── taxonomy.json
├── images/
│ ├── <image_id>.jpg
│ └── ...
├── advanced_domain_application/
├── general_object_editing/
├── generation_composition/
├── global_enhancement_atmosphere/
├── portrait_human_specialized/
└── text_graphic_design/
```
Each benchmark case JSON is stored under the taxonomy hierarchy:
```text
data/<category>/<sub_category>/<task>/<detail>.json
```
The source images are stored under:
```text
data/images/
```
You can inspect the tar file without extracting it:
```bash
tar -tf conceptbench_data.tar | head
```
## Expected data size
| Item | Count |
|---|---:|
| Case JSON files | 1,000 |
| Source images | 979 |
| Top-level categories | 6 |
Some source images are shared by multiple benchmark cases, so the number of source images is smaller than the number of case JSON files.
## JSON format
Each case JSON keeps only the fields needed for benchmark inference and evaluation:
```json
{
"caption": "source image caption",
"edit_concept": {
"category": "...",
"sub_category": "...",
"task": "...",
"detail": "..."
},
"instruction_en": "short English edit instruction",
"instruction_zh": "short Chinese edit instruction",
"detailed_instruction_en": "detailed English edit instruction",
"detailed_instruction_zh": "detailed Chinese edit instruction",
"local_image_path": "images/example.jpg"
}
```
Field descriptions:
- `caption`: short English caption for the source image.
- `edit_concept`: taxonomy information for the editing case.
- `instruction_en` / `instruction_zh`: short English and Chinese edit instructions.
- `detailed_instruction_en` / `detailed_instruction_zh`: detailed English and Chinese edit instructions.
- `local_image_path`: relative path to the source image under the extracted `data/` directory.
For example, if a JSON file contains:
```json
{
"local_image_path": "images/example.jpg"
}
```
then the corresponding source image should be located at:
```text
ConceptEdit-Bench/data/images/example.jpg
```
All paths inside the released JSON files are relative paths. No local absolute paths are included.
## Using with the evaluation code
Clone the ConceptEdit code repository and place the extracted `data/` directory under the benchmark code directory expected by the scripts:
```bash
git clone https://github.com/inclusionAI/ConceptEdit.git
cd ConceptEdit/benchmark
# place or symlink the extracted data directory here
# expected path: ConceptEdit/benchmark/data/
```
The benchmark scripts read cases from `./data` and use `local_image_path` to find source images.
## Source Image Acknowledgement
The source images in ConceptEdit-12M are based on images from [Fine-T2I](https://huggingface.co/datasets/ma-xu/fine-t2i).
## Citation
If you find this benchmark useful, please cite the ConceptEdit paper and refer to the project repository:
```bibtex
@article{cui2026unlocking,
title={Unlocking the Potential of Image Editing via Concept Scaling and Dense Supervision},
author={Cui, Long and Liu, Xiaoqian and Qin, Qi and Xin, Yi and Lin, Tao and Li, Jianguo and Zhang, Linfeng},
journal={arXiv preprint arXiv:2608.16812},
year={2026}
}
```
|