multiref-bench-eval
MultiRef: Controllable Image Generation with Multiple Visual References — Chen et al. (2025) (arXiv:2508.06905, 2025)
What this evaluates
Evaluates the ability of image generation models to simultaneously align and incorporate multiple visual reference conditions (e.g., bounding boxes, depth maps, masks, sketches) alongside text instructions. It probes complex multi-source creative synthesis, testing both global image quality and fine-grained reference fidelity across different input formats and processing orders.
Datasets
- MULTIREF-BENCH — total 1990; splits: test (1990)
Metrics
Overall Assessment (IQ, IF, SF) (primary) — range: [0, 1]
- Composite score comprising Image Quality (IQ), Instruction Following (IF), and Source Fidelity (SF). Evaluated via LLM/human judgment on a normalized 0–1 scale where higher is better.
FID — range: [0, inf)
- Fréchet Inception Distance measuring distributional similarity between generated and reference image sets. Lower values indicate better quality.
Aesthetic — range: [0, 1]
- Aesthetic score evaluating visual appeal and artistic quality. Higher values indicate better aesthetics.
Reference Fidelity (AVG, BBox, Semantic Map, Mask, Depth Map, Canny Edge, Sketch, Caption, Pose, Subject, Art Style) — range: [0, 1] or error units
- Fine-grained fidelity metrics measuring adherence to specific visual conditions. BBox, Semantic Map, Mask, Caption, Pose, Subject, and Art Style are higher-is-better (↑). Depth Map, Canny Edge, and Sketch are lower-is-better (↓), typically computed as MSE or error rates. AVG is the mean of all reference fidelity scores.
Input / output format
Input: Multiple reference images (e.g., BBox, depth, mask, canny, sketch, pose, subject, art style) combined with a text instruction/caption. For compositional setups, references are provided sequentially in multi-turn dialogues with one reference per turn.
Output: A single generated image.
Scoring recipe
# IQ, IF, SF, and Reference Fidelity are LLM/human judged (0-1 scale)
# FID, Depth Map, Canny Edge, Sketch are lower-is-better (↓)
# Aesthetic, BBox, Semantic Map, Mask, Caption, Pose, Subject, Art Style are higher-is-better (↑)
metrics = {}
metrics['FID'] = compute_fid(generated, ref_images)
metrics['Aesthetic'] = compute_aesthetic(generated)
metrics['IQ'] = judge_score(generated, prompt, 'image_quality')
metrics['IF'] = judge_score(generated, prompt, 'instruction_following')
metrics['SF'] = judge_score(generated, prompt, 'source_fidelity')
for cond in ['BBox', 'Semantic Map', 'Mask', 'Caption', 'Pose', 'Subject', 'Art Style']:
metrics[cond] = fidelity_score(generated, ref_condition, cond)
for cond in ['Depth Map', 'Canny Edge', 'Sketch']:
metrics[cond] = error_score(generated, ref_condition, cond)
return metrics
Common pitfalls
- Input order drastically changes specific conditional fidelities (e.g., depth/sketch error) without significantly affecting global FID or overall image quality.
- Removing captions has mixed effects: it improves sketch and semantic map fidelity but degrades depth fidelity and aesthetic quality across models.
- Compositional LLM+Diffusion pipelines score higher on image quality but consistently underperform on instruction following and source fidelity compared to unified end-to-end models.
Evidence (verbatim from paper)
As shown in Figure 4, LLM+SD combinations achieve the highest image quality scores, with Claude + SD3.5 reaching 0.774, occasionally surpassing ground truth. However, all compositional frameworks consistently underperform in instruction following and source fidelity. While ground truth achieves 0.767 and 0.706 for IF and SF respectively, Claude + SD3.5 only reaches 0.589 and 0.462, indicating that a separated perceptron-generator architecture fundamentally compromises complex visual instruction execution.
Citation
@misc{chen2025multiref,
title={MultiRef: Controllable Image Generation with Multiple Visual References},
author={Chen et al. (2025)},
year={2025},
note={arXiv:2508.06905}
}
1---2name: multiref-bench-eval3description: Evaluates the ability of image generation models to simultaneously align and incorporate multiple visual reference conditions (e.g., bounding boxes, depth maps, masks, sketches) alongside text instructions. It probes complex multi-source creative synthesis, testing both global image quality and fine-grained reference fidelity across different input formats and processing orders. Use when the user wants to benchmark on MULTIREF-BENCH, or asks about evaluating this task. Reports Overall Assessment (IQ, IF, SF).4---56# multiref-bench-eval78> MultiRef: Controllable Image Generation with Multiple Visual References — Chen et al. (2025) (arXiv:2508.06905, 2025)910## What this evaluates1112Evaluates the ability of image generation models to simultaneously align and incorporate multiple visual reference conditions (e.g., bounding boxes, depth maps, masks, sketches) alongside text instructions. It probes complex multi-source creative synthesis, testing both global image quality and fine-grained reference fidelity across different input formats and processing orders.1314## Datasets1516- **MULTIREF-BENCH** — total 1990; splits: test (1990)1718## Metrics1920- `Overall Assessment (IQ, IF, SF)` **(primary)** — range: [0, 1]21 - Composite score comprising Image Quality (IQ), Instruction Following (IF), and Source Fidelity (SF). Evaluated via LLM/human judgment on a normalized 0–1 scale where higher is better.22- `FID` — range: [0, inf)23 - Fréchet Inception Distance measuring distributional similarity between generated and reference image sets. Lower values indicate better quality.24- `Aesthetic` — range: [0, 1]25 - Aesthetic score evaluating visual appeal and artistic quality. Higher values indicate better aesthetics.26- `Reference Fidelity (AVG, BBox, Semantic Map, Mask, Depth Map, Canny Edge, Sketch, Caption, Pose, Subject, Art Style)` — range: [0, 1] or error units27 - Fine-grained fidelity metrics measuring adherence to specific visual conditions. BBox, Semantic Map, Mask, Caption, Pose, Subject, and Art Style are higher-is-better (↑). Depth Map, Canny Edge, and Sketch are lower-is-better (↓), typically computed as MSE or error rates. AVG is the mean of all reference fidelity scores.2829## Input / output format3031**Input**: Multiple reference images (e.g., BBox, depth, mask, canny, sketch, pose, subject, art style) combined with a text instruction/caption. For compositional setups, references are provided sequentially in multi-turn dialogues with one reference per turn.3233**Output**: A single generated image.3435## Scoring recipe3637```python38# IQ, IF, SF, and Reference Fidelity are LLM/human judged (0-1 scale)39# FID, Depth Map, Canny Edge, Sketch are lower-is-better (↓)40# Aesthetic, BBox, Semantic Map, Mask, Caption, Pose, Subject, Art Style are higher-is-better (↑)41metrics = {}42metrics['FID'] = compute_fid(generated, ref_images)43metrics['Aesthetic'] = compute_aesthetic(generated)44metrics['IQ'] = judge_score(generated, prompt, 'image_quality')45metrics['IF'] = judge_score(generated, prompt, 'instruction_following')46metrics['SF'] = judge_score(generated, prompt, 'source_fidelity')47for cond in ['BBox', 'Semantic Map', 'Mask', 'Caption', 'Pose', 'Subject', 'Art Style']:48 metrics[cond] = fidelity_score(generated, ref_condition, cond)49for cond in ['Depth Map', 'Canny Edge', 'Sketch']:50 metrics[cond] = error_score(generated, ref_condition, cond)51return metrics52```5354## Common pitfalls5556- Input order drastically changes specific conditional fidelities (e.g., depth/sketch error) without significantly affecting global FID or overall image quality.57- Removing captions has mixed effects: it improves sketch and semantic map fidelity but degrades depth fidelity and aesthetic quality across models.58- Compositional LLM+Diffusion pipelines score higher on image quality but consistently underperform on instruction following and source fidelity compared to unified end-to-end models.5960## Evidence (verbatim from paper)6162> As shown in Figure 4, LLM+SD combinations achieve the highest image quality scores, with Claude + SD3.5 reaching 0.774, occasionally surpassing ground truth. However, all compositional frameworks consistently underperform in instruction following and source fidelity. While ground truth achieves 0.767 and 0.706 for IF and SF respectively, Claude + SD3.5 only reaches 0.589 and 0.462, indicating that a separated perceptron-generator architecture fundamentally compromises complex visual instruction execution.6364## Citation6566```bibtex67@misc{chen2025multiref,68 title={MultiRef: Controllable Image Generation with Multiple Visual References},69 author={Chen et al. (2025)},70 year={2025},71 note={arXiv:2508.06905}72}73```7475- arXiv: 2508.06905