language:
- zh
- en
license: cc-by-nc-nd-4.0
task_categories:
- image-to-image
🚩 RedBench (REDEdit-Bench)
🔥 Introduction
RedBench (also known as REDEdit-Bench) is a comprehensive benchmark designed to evaluate the capabilities of current image editing models.
This dataset was introduced in the FireRed-Image-Edit-1.0 Technical Report.
Our main goal is to build more diverse scenarios and editing instructions that better align with human language. We collected over 3,000 images from the internet, and after careful expert-designed selection, we constructed 1,673 bilingual (Chinese–English) editing pairs across 15 categories.
📢 Note on Dataset Size: The original benchmark described in the paper consists of 1,673 image pairs. However, due to strict redistribution licensing restrictions on certain commercial assets, the public release version has been curated to 1,542 pairs. This ensures full compliance with copyright laws while maintaining the diversity and quality of the benchmark.
✨ Key Features
- 🗣️ Human-Aligned Instructions: Diverse scenarios and editing instructions that closely mimic real-world human usage.
- 🌐 Bilingual Support: Full support for both Chinese and English editing instructions.
- 🛡️ Quality Assurance: Carefully curated by experts from a massive collection of source images.
- 🧩 Diverse Tasks: Covers 15 distinct categories including Object Addition, Removal, Replacement, Style Transfer, and more.
📂 Data Structure & Examples
The dataset is organized in JSONL format. Each entry contains the image source, bilingual instructions, and the specific task category.
Task Categories
The benchmark covers 15 different task categories:
| Category | Count | Description |
|---|---|---|
| add | 143 | Object Addition |
| adjust | 156 | Attribute Adjustment |
| background | 91 | Background Modification |
| beauty | 79 | Beauty Enhancement |
| color | 99 | Color Modification |
| compose | 100 | Image Composition |
| extract | 95 | Element Extraction |
| lowlevel | 47 | Low-level Processing |
| motion | 78 | Motion Addition |
| portrait | 102 | Portrait Editing |
| remove | 147 | Object Removal |
| replace | 140 | Object Replacement |
| stylize | 92 | Style Transfer |
| text | 123 | Text Editing |
| viewpoint | 50 | Viewpoint Change |
| all | 1542 | All Tasks |
Sample Data
{"id": "1", "source": "redbench/add/add-1.png", "a_to_b_instructions": "在图片中绿色植物上增加一只七星瓢虫", "a_to_b_instructions_eng": "Add a seven-spotted ladybug on the green plant in the picture", "task": "add"}
{"id": "2", "source": "redbench/add/add-2.png", "a_to_b_instructions": "在咖啡杯里加一个白色心形拉花", "a_to_b_instructions_eng": "Add a white heart-shaped latte art in the coffee cup", "task": "add"}
{"id": "3", "source": "redbench/add/add-3.png", "a_to_b_instructions": "在马路上增加一个穿运动服跑步的男人", "a_to_b_instructions_eng": "Add a man running in sportswear on the road", "task": "add"}
Generate Images
Before evaluating the model, you first need to use the provided JSONL file (which contains metadata information) along with the original image files to generate the corresponding edited images by editing model.
We provide the inference script redbench_infer.py for generating edited images. This script supports multi-GPU distributed inference using Accelerate.
Dependencies
Install required dependencies:
pip install accelerate diffusers transformers pillow tqdm
Then download our dataset REDEdit_Bench.tar. Please download the tar file and extract it.
Usage
To run the inference script, use the following command:
accelerate launch --num_processes <num_gpus> redbench_infer.py --model-path <path_to_model> --jsonl-path <path_to_redbench_jsonl> --save-path <path_to_save_results>
Arguments:
--model-path: Path to the model. Default isFireRedTeam/FireRed-Image-Edit-1.0.--lora-name: Path to LoRA weights (optional).--save-path: Directory to save the generated images (required).--jsonl-path: Path to the JSONL file containing edit instructions (required).--edit-task: Specific task to process (e.g.,add,remove,stylize). Default isall.--save-key: Key name for saving result path. Default isresult.--seed: Random seed. Default is 43.--lang: Instruction language, cn or eng (default: cn).
Example:
# Generate all edited images using 8 GPUs
accelerate launch --num_processes 8 redbench_infer.py \
--model-path FireRedTeam/FireRed-Image-Edit-1.1 \
--jsonl-path ./redbench.jsonl \
--save-path ./edited_images_cn \
--edit-task all \
--lang cn
Image Editing Evaluation using Gemini-3-Flash
This project evaluates image editing processes using the Gemini-3-Flash API. The system processes a set of original and edited images, comparing them according to a predefined set of criteria, such as instruction adherence, image-editing quality, and detail preservation.
We provide the evaluation script redbench_eval.py for automated evaluation using Gemini.
Overview
The goal of this project is to evaluate the quality of image editing processes using Gemini. The evaluation criteria include:
- Instruction Adherence: The edit must match the specified editing instructions.
- Image-editing Quality: The edit should appear seamless and natural.
- Detail Preservation: Regions not specified for editing should remain unchanged.
Dependencies
pip install google-generativeai pillow tqdm
Setup
Gemini API Key: Set your Gemini API key as an environment variable:
export GEMINI_API_KEY="your-gemini-api-key"Images and JSON File: You will need:
- A folder containing the edited images (
--result_img_folder). - A JSONL file containing edit instructions and metadata (
--edit_json). - A JSON file containing evaluation prompts for each task category (
--prompts_json).
- A folder containing the edited images (
Usage
To run the evaluation script, use the following command:
python redbench_eval.py --result_img_folder <path_to_edited_images> --edit_json <path_to_redbench_jsonl> --prompts_json <path_to_prompts_json> --lang <language>
🧩 License
REDEdit-Bench is released under the Creative Commons Attribution–NonCommercial–NoDerivatives (CC BY-NC-ND 4.0) license.
- ✅ Free for academic research purposes only
- ❌ Commercial use is prohibited
🖼️ Data Source: All images included in REDEdit-Bench were legally purchased and obtained through official channels to ensure copyright compliance.
🖊️ Citation
We kindly encourage citation of our work if you find it useful.
@article{firered2026rededit,
title={FireRed-Image-Edit-1.0 Technical Report},
author={Super Intelligence Team},
year={2026},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2602.13344},
}