Skip to content
AI.info

Research

LongT2IBench: A Benchmark for Evaluating Long Text-to-Image Generation with Graph-structured Annotations

LongT2IBench: A Benchmark for Evaluating Long Text-to-Image Generation with Graph-structured Annotations Overview Research area: Computer Vision — specifically Text-to-Image (T2I) generation evaluatio

arXiv
2512.09271
Published
2025-12-10
Authors
Zhichao Yang, Tianjiao Gu, Jianjie Wang, Feiyu Lin, Xiangfei Sheng, Pengfei Chen, Leida Li

AI summary

LongT2IBench: A Benchmark for Evaluating Long Text-to-Image Generation with Graph-structured Annotations

Overview

Research area: Computer Vision — specifically Text-to-Image (T2I) generation evaluation, image-text alignment scoring, and multimodal large language models (MLLMs).

Technical level: Intermediate. The paper assumes familiarity with T2I generative models, CLIP-style vision-language encoders, correlation metrics such as SRCC and PLCC, and instruction tuning of MLLMs with LoRA.

One-sentence scope: The paper introduces a 14K-pair benchmark of long text-image data annotated as entity-attribute-relation graphs, plus a fine-tuned MLLM evaluator that outputs both a numerical alignment score and a structured, interpretable alignment report.

What This Paper Is About

Existing benchmarks for judging how well a generated image matches its prompt rely almost entirely on short prompts and on coarse human labels such as MOS or Likert scores. That makes it hard to build evaluators that work on long, detail-dense prompts and even harder to explain why an image is misaligned. The paper's goal is to supply both the data and the model needed for long-prompt alignment evaluation: a benchmark whose annotations break prompts into graph-structured elements (entities, attributes, relations), and an evaluator trained on those annotations to produce a score plus an interpretation localizing what is aligned and what is not.

Key Contributions

  1. LongT2IBench, described as the first-of-its-kind long T2I alignment benchmark, containing 14K long text-image pairs with graph-structured human annotations that yield both quantitative scores and fine-grained interpretations.

  2. A Generate-Refine-Qualify annotation protocol that converts long prompts into textual graph structures made of entities, attributes, and relations, supporting fine-grained alignment annotation per element. From an initial collection of 4.5K long prompts, 3K precise conversions were retained (LongPrompt-3K), and from 18K generated image-text samples, 14K pairs were retained after annotation and verification.

  3. LongT2IExpert, a long T2I evaluator that equips an MLLM (Qwen2.5-VL-7B-Instruct) with a Hierarchical Alignment Chain-of-Thought (HA-CoT) three-hop reasoning process and is instruction-tuned to output both a numerical alignment score and a JSON-structured interpretation.

  4. A systematic evaluation framework covering scoring accuracy (SRCC and PLCC) and interpretation quality (accuracy), broken down by five text-length intervals and by three alignment dimensions: entity, attribute, and relation.

Main Findings

  • LongT2IExpert leads on alignment scoring. It achieves overall SRCC 0.558 and PLCC 0.557, giving an overall average of 0.557, while the strongest fine-tuned open-source baselines reach averages of 0.439 (ImageReward*) and 0.438 (PickScore*). The best non-fine-tuned evaluator reported is HPSv2 with an overall average of 0.387, followed by Q-Eval-Score at 0.358.

  • Performance drops as prompts get longer. Most evaluators degrade across the five word-count intervals (30-50, 50-70, 70-90, 90-110, 110+). LongT2IExpert falls from SRCC 0.781 / PLCC 0.789 at 30-50 words to SRCC 0.431 / PLCC 0.375 at 110+ words. VLM-based models perform poorly in the 110+ scenario because of text-encoder token length restrictions, while MLLM-based evaluators such as Q-Eval-Score show notable advantages there.

  • Alignment scores decrease as prompt length increases. Analysis across the five word-count intervals shows scores gradually declining with length, which the authors use to argue for the importance of long-prompt evaluation.

  • Proprietary generators fare relatively better on long prompts. The distribution of alignment annotations across the six generative models shows performance disparities, with DALL-E 3 and Midjourney v6 demonstrating relative advantages.

  • Relation alignment is the hardest dimension. LongT2IExpert reaches 71.9% overall accuracy on entities, 47.3% on attributes, and 35.2% on relations, for 53.2% across all categories. Relation misalignment also constitutes a particularly significant proportion of errors. Gemini-1.5-pro ranks second overall at 31.1%, ahead of GPT-4o (27.0%), GPT-4-Turbo (24.2%), Grok-3 (25.7%), Gemini-1.5-flash (25.9%), Qwen2.5-v1-max (27.7%), and LLava-v1.6 (14.5%).

  • Misalignment is harder to detect than alignment. Accuracy for misaligned elements is consistently lower than for aligned elements across all models and dimensions (for LongT2IExpert: 60.7% aligned vs. 25.8% misaligned on the "All" category).

  • Both multi-task training and HA-CoT matter. Ablations show that removing score supervision drops interpretation accuracy to 32.8%; removing interpretation supervision drops the scoring average to 0.474; removing HA-CoT drops to 0.516 scoring average and 39.9% interpretation accuracy. The full model reaches 0.557 and 53.2%.

Methodology in Plain English

Building the data. The authors collected long prompts from three sources so the benchmark would not be dominated by one style: human-written prompts from DiffusionDB, AI-written prompts synthesized with GPT-4, and long image captions from DOCCI. They balanced sampling across five word-count intervals (30-50, 50-70, 70-90, 90-110, 110+ words). Each prompt was fed to six T2I models spanning three groups: general open-source models (Stable Diffusion v3.5, PixArt-α), proprietary models (DALL-E 3, Midjourney v6), and models built for long prompts (LongCLIP-SD, LongSD).

Turning prompts into graphs. Long prompts carry too much detail for an annotator to score as a whole, so the authors convert each prompt into a graph of entities, attributes, and relations. This happens in three phases: GPT-4 generates an initial graph; trained annotators refine it by adding, deleting, or modifying elements; then a double-check qualifies the refinement, and only graphs with consistent agreement are kept.

Annotating alignment. Annotators make binary aligned/misaligned judgments for each entity, attribute, and relation against the generated image (E-Align, A-Align, R-Align). The platform uses hierarchical logic: entities are judged first, and attributes/relations tied to a misaligned entity are filtered out automatically. Three independent annotators then review the initial results, with majority consensus required and strongly disagreed instances removed.

Turning graphs into labels. Because the authors assume a future ideal generator would match every textual detail, all graph elements are weighted equally. The alignment score is simply the ratio of aligned elements to the total number of elements. Interpretations are the list of aligned and misaligned entities, attributes, and relations. Relations are further categorized as Action, Connection, Description, Possession, From/to, and Spatial.

Training the evaluator. The backbone is Qwen2.5-VL-7B-Instruct. A Hierarchical Alignment Chain-of-Thought guides it through three reasoning hops: first act as an Entity Aligner, then as an Attribute and Relation Aligner for each aligned entity, then synthesize an overall score. The model's vocabulary is extended with special tokens (<Level> for the score and <Json> for the interpretation). The <Level> token's last-layer embedding is passed through a three-layer score head, and the predicted score is trained with MSE against human scores. The <Json> output is trained with cross-entropy against the ground-truth graph. The two losses are combined with a weight λ (set to 10), and LoRA adapters (r=32, α=64, dropout=0.05) are used with a learning rate of 5e-5 for LoRA parameters and 2e-4 for the score head, trained for 3 epochs on an A800 GPU.

Why This Matters

Impact on research. Alignment benchmarks have largely saturated around short prompts and holistic scores, which limits what they can tell you about failure modes. By releasing 14K pairs with element-level graph annotations and both scores and interpretations, this work gives the community a target for training and testing interpretable evaluators rather than opaque reward models. It also shows a practical gap: even strong proprietary MLLMs like GPT-4o and Gemini-1.5-pro score far below the fine-tuned model (31.1% and 27.0% vs. 53.2% overall interpretation accuracy), and general evaluators achieve only around 0.44 average correlation after fine-tuning compared with 0.557.

Real-world applications (as framed or implied by the paper's setting):

  • Artistic creation workflows, where users write lengthy descriptive prompts and need feedback on which described details the generator ignored.
  • Advertising design, where copy-driven image generation must faithfully include specific products, attributes, and interactions.
  • Diagnostics for T2I developers, since the interpretation localizes which entities, attributes, or relations failed, pointing directly at what to fix.
  • Model selection and benchmarking for teams choosing among proprietary and open-source generators for long-prompt workloads.

Industry relevance. Reward models and evaluators are central to RLHF-style fine-tuning of image generators. The paper's results suggest that evaluators trained for long prompts are meaningfully better at ranking long-prompt outputs than general-purpose scorers, and that detecting misalignment is the harder half of the problem — specifically relation-level and misaligned-element detection, where the best model still sits at 35.2% and 25.8% respectively.

Future Directions

  • Improving relation-level and misalignment detection. The reported bottleneck is relations (35.2% overall) and misaligned elements (25.8% on "All"), so better long-context reasoning and precise localization are the obvious next targets.
  • Scaling to longer and more complex prompts. Even LongT2IExpert drops sharply at 110+ words (SRCC 0.431, PLCC 0.375), so the paper's own results point to an unsolved regime.
  • Extending to more relation categories and finer graph structures, beyond the six relation types (Action, Connection, Description, Possession, From/to, Spatial) used here.
  • Using the evaluator as a training signal. The conclusion notes long T2I alignment remains far from solved and hopes the work inspires new technical approaches; turning LongT2IExpert into a reward model to optimize generators is a natural extension.

Target Audience

Researchers and engineers working on T2I generation, image-text alignment metrics, reward modeling, and MLLM instruction tuning. It is also useful for practitioners who need to audit how faithfully a generative model follows long, detail-heavy prompts, and for benchmark designers interested in graph-structured annotation protocols as an alternative to Likert-scale labeling. Readers without a background in vision-language models will need some grounding in correlation metrics and multimodal architectures.

Authors’ abstract

The increasing popularity of long Text-to-Image (T2I) generation has created an urgent need for automatic and interpretable models that can evaluate the image-text alignment in long prompt scenarios. However, the existing T2I alignment benchmarks predominantly focus on short prompt scenarios and only provide MOS or Likert scale annotations. This inherent limitation hinders the development of long T2I evaluators, particularly in terms of the interpretability of alignment. In this study, we contribute LongT2IBench, which comprises 14K long text-image pairs accompanied by graph-structured human annotations. Given the detail-intensive nature of long prompts, we first design a Generate-Refine-Qualify annotation protocol to convert them into textual graph structures that encompass entities, attributes, and relations. Through this transformation, fine-grained alignment annotations are achieved based on these granular elements. Finally, the graph-structed annotations are converted into alignment scores and interpretations to facilitate the design of T2I evaluation models. Based on LongT2IBench, we further propose LongT2IExpert, a LongT2I evaluator that enables multi-modal large language models (MLLMs) to provide both quantitative scores and structured interpretations through an instruction-tuning process with Hierarchical Alignment Chain-of-Thought (CoT). Extensive experiments and comparisons demonstrate the superiority of the proposed LongT2IExpert in alignment evaluation and interpretation. Data and code have been released in https://welldky.github.io/LongT2IBench-Homepage/.

Read the original paper