imgedit-bench-eval
ShareGPT-4o-Image: Aligning Multimodal Models with GPT-4o-Level Image Generation — Chen et al. (2025) (arXiv:2506.18095, 2025)
What this evaluates
Evaluates text-and-image-to-image editing capabilities, including addition, removal, replacement, motion change, style transfer, background change, object extraction, and hybrid edits. It tests the model's capacity to modify existing images according to natural language instructions while preserving unedited regions.
Datasets
- ImgEdit-Bench — total ?; splits: test (-1)
Metrics
ImgEdit-Bench (primary) — range: other
- Average score across 8 edit categories (Addition, Removal, Replacement, Motion Change, Style Transfer, Background Change, Object Extraction, Hybrid Edit).
Input / output format
Input: Source image paired with a text instruction specifying the edit type and target modification.
Output: Edited image.
Scoring recipe
scores = []
for img, instruction in dataset:
edited_img = model.edit(img, instruction)
score = judge.score(edited_img, img, instruction)
scores.append(score)
return mean(scores)
Common pitfalls
- Edit categories often overlap, making isolated evaluation challenging.
- The exact scoring scale (e.g., 1-5) is not explicitly stated in the paper excerpt.
Evidence (verbatim from paper)
Table 3: Evaluation of text-and-image-to-image generation ability on ImgEdit-Bench.
Citation
@misc{chen2025sharegpt4oimage,
title={ShareGPT-4o-Image: Aligning Multimodal Models with GPT-4o-Level Image Generation},
author={Chen et al. (2025)},
year={2025},
note={arXiv:2506.18095}
}
1---2name: imgedit-bench-eval3description: Evaluates text-and-image-to-image editing capabilities, including addition, removal, replacement, motion change, style transfer, background change, object extraction, and hybrid edits. It tests the model's capacity to modify existing images according to natural language instructions while preserving unedited regions. Use when the user wants to benchmark on ImgEdit-Bench, or asks about evaluating this task. Reports ImgEdit-Bench.4---56# imgedit-bench-eval78> ShareGPT-4o-Image: Aligning Multimodal Models with GPT-4o-Level Image Generation — Chen et al. (2025) (arXiv:2506.18095, 2025)910## What this evaluates1112Evaluates text-and-image-to-image editing capabilities, including addition, removal, replacement, motion change, style transfer, background change, object extraction, and hybrid edits. It tests the model's capacity to modify existing images according to natural language instructions while preserving unedited regions.1314## Datasets1516- **ImgEdit-Bench** — total ?; splits: test (-1)1718## Metrics1920- `ImgEdit-Bench` **(primary)** — range: other21 - Average score across 8 edit categories (Addition, Removal, Replacement, Motion Change, Style Transfer, Background Change, Object Extraction, Hybrid Edit).2223## Input / output format2425**Input**: Source image paired with a text instruction specifying the edit type and target modification.2627**Output**: Edited image.2829## Scoring recipe3031```python32scores = []33for img, instruction in dataset:34 edited_img = model.edit(img, instruction)35 score = judge.score(edited_img, img, instruction)36 scores.append(score)37return mean(scores)38```3940## Common pitfalls4142- Edit categories often overlap, making isolated evaluation challenging.43- The exact scoring scale (e.g., 1-5) is not explicitly stated in the paper excerpt.4445## Evidence (verbatim from paper)4647> Table 3: Evaluation of text-and-image-to-image generation ability on ImgEdit-Bench.4849## Citation5051```bibtex52@misc{chen2025sharegpt4oimage,53 title={ShareGPT-4o-Image: Aligning Multimodal Models with GPT-4o-Level Image Generation},54 author={Chen et al. (2025)},55 year={2025},56 note={arXiv:2506.18095}57}58```5960- arXiv: 2506.18095