t2i-corebench-eval
Easier Painting Than Thinking: Can Text-to-Image Models Set the Stage, but Not Direct the Play? — Li et al. (2025) (arXiv:2509.03516, 2025)
What this evaluates
Evaluates text-to-image models' ability to handle high compositional density and multi-step visual reasoning. It probes instance, attribute, and relation binding, text rendering, and deductive/inductive/abductive inference capabilities.
Datasets
- T2I-CoReBench — total ?; splits: test (-1)
Metrics
Overall Score (primary) — range: percent
- Mean score across all samples for both composition and reasoning dimensions. Scores are computed on a 0-100 scale by an MLLM evaluator (Gemini 2.5 Flash) judging image-prompt alignment per dimension.
Mean Composition Score — range: percent
- Average score across instance, attribute, relation, and text rendering dimensions.
Mean Reasoning Score — range: percent
- Average score across logical, background, hidden, prompt, general, attribute, constraint, and relation reasoning dimensions.
Input / output format
Input: Text prompts containing complex scene descriptions requiring multi-step inference and high compositional density.
Output: Generated images corresponding to the input prompts.
Scoring recipe
def evaluate(prompt, generated_image):
evaluator = Gemini2.5Flash()
dim_scores = {}
for dim in COMPOSITION_DIMS + REASONING_DIMS:
dim_scores[dim] = evaluator.judge_alignment(prompt, generated_image, dim)
comp_mean = mean(dim_scores[d] for d in COMPOSITION_DIMS)
reason_mean = mean(dim_scores[d] for d in REASONING_DIMS)
overall = mean(comp_mean, reason_mean)
return overall
Common pitfalls
- Prompt rewriting explicitly reasons over text before generation, which boosts reasoning scores but often drops composition scores by omitting explicit visual elements.
- Textual reasoning alone cannot fix inherent visual biases (e.g., generating circular wheels for 'square wheels' prompts), requiring multimodal interaction mechanisms beyond prompt rewriting.
Evidence (verbatim from paper)
As shown in Table 3, we evaluate a wide range of T2I models on our T2I-CoReBench, revealing valuable insights into their strengths, weaknesses, and advancements, particularly in handling real-world scenarios that require high compositional density and reasoning intensity... Despite achieving the highest overall score, Imagen 4 Ultra achieves only 72.9 in reasoning (9.5 below its composition score)... These results indicate that current T2I models still struggle to infer implicit visual elements from prompts, underscoring reasoning as the central unsolved challenge in our benchmark.
Citation
@misc{li2025easier,
title={Easier Painting Than Thinking: Can Text-to-Image Models Set the Stage, but Not Direct the Play?},
author={Li et al. (2025)},
year={2025},
note={arXiv:2509.03516}
}
1---2name: t2i-corebench-eval3description: Evaluates text-to-image models' ability to handle high compositional density and multi-step visual reasoning. It probes instance, attribute, and relation binding, text rendering, and deductive/inductive/abductive inference capabilities. Use when the user wants to benchmark on T2I-CoReBench, or asks about evaluating this task. Reports Overall Score.4---56# t2i-corebench-eval78> Easier Painting Than Thinking: Can Text-to-Image Models Set the Stage, but Not Direct the Play? — Li et al. (2025) (arXiv:2509.03516, 2025)910## What this evaluates1112Evaluates text-to-image models' ability to handle high compositional density and multi-step visual reasoning. It probes instance, attribute, and relation binding, text rendering, and deductive/inductive/abductive inference capabilities.1314## Datasets1516- **T2I-CoReBench** — total ?; splits: test (-1)1718## Metrics1920- `Overall Score` **(primary)** — range: percent21 - Mean score across all samples for both composition and reasoning dimensions. Scores are computed on a 0-100 scale by an MLLM evaluator (Gemini 2.5 Flash) judging image-prompt alignment per dimension.22- `Mean Composition Score` — range: percent23 - Average score across instance, attribute, relation, and text rendering dimensions.24- `Mean Reasoning Score` — range: percent25 - Average score across logical, background, hidden, prompt, general, attribute, constraint, and relation reasoning dimensions.2627## Input / output format2829**Input**: Text prompts containing complex scene descriptions requiring multi-step inference and high compositional density.3031**Output**: Generated images corresponding to the input prompts.3233## Scoring recipe3435```python36def evaluate(prompt, generated_image):37 evaluator = Gemini2.5Flash()38 dim_scores = {}39 for dim in COMPOSITION_DIMS + REASONING_DIMS:40 dim_scores[dim] = evaluator.judge_alignment(prompt, generated_image, dim)41 comp_mean = mean(dim_scores[d] for d in COMPOSITION_DIMS)42 reason_mean = mean(dim_scores[d] for d in REASONING_DIMS)43 overall = mean(comp_mean, reason_mean)44 return overall45```4647## Common pitfalls4849- Prompt rewriting explicitly reasons over text before generation, which boosts reasoning scores but often drops composition scores by omitting explicit visual elements.50- Textual reasoning alone cannot fix inherent visual biases (e.g., generating circular wheels for 'square wheels' prompts), requiring multimodal interaction mechanisms beyond prompt rewriting.5152## Evidence (verbatim from paper)5354> As shown in Table 3, we evaluate a wide range of T2I models on our T2I-CoReBench, revealing valuable insights into their strengths, weaknesses, and advancements, particularly in handling real-world scenarios that require high compositional density and reasoning intensity... Despite achieving the highest overall score, Imagen 4 Ultra achieves only 72.9 in reasoning (9.5 below its composition score)... These results indicate that current T2I models still struggle to infer implicit visual elements from prompts, underscoring reasoning as the central unsolved challenge in our benchmark.5556## Citation5758```bibtex59@misc{li2025easier,60 title={Easier Painting Than Thinking: Can Text-to-Image Models Set the Stage, but Not Direct the Play?},61 author={Li et al. (2025)},62 year={2025},63 note={arXiv:2509.03516}64}65```6667- arXiv: 2509.03516