Evaluates text-to-image generation by measuring how accurately models follow complex prompts with multiple objects, attributes, and spatial constraints. Use when the user wants to benchmark on GenEval, or asks about evaluating this task. Reports GenEval Overall.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill geneval-t2i --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Geneval T2i?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-geneval-t2i)More formats (shields.io, HTML) on the badges page.
---
name: geneval-t2i
description: Evaluates text-to-image generation by measuring how accurately models follow complex prompts with multiple objects, attributes, and spatial constraints. Use when the user wants to benchmark on GenEval, or asks about evaluating this task. Reports GenEval Overall.
metadata:
skill_kind: dataset_eval
source_arxiv: 2604.13030
bibtex_key: han2026generativerefinement
confidence: high
---
# geneval-t2i
> Generative Refinement Networks for Visual Synthesis — Jian Han et al. (arXiv:2604.13030, 2026)
## What this evaluates
Evaluates text-to-image generation by measuring how accurately models follow complex prompts with multiple objects, attributes, and spatial constraints.
## Datasets
- **GenEval** — total ?; splits: test (-1)
## Metrics
- `GenEval Overall` **(primary)** — range: [0, 1]
- Average accuracy across sub-tasks: Single Object, Two Object, Count, Colors, Position, and Color Attributes. Ranges from 0 to 1.
## Input / output format
**Input**: Text prompt specifying object count, colors, and spatial relationships
**Output**: Generated image
## Scoring recipe
```python
scores = []
for prompt in geneval_prompts:
img = model.generate(prompt)
match = detector.check_constraints(img, prompt)
scores.append(match)
overall = mean(scores)
```
## Common pitfalls
- Prompt rewriting is applied before generation, which can artificially boost scores.
- Evaluation relies on an external object/attribute detector that may have its own failure modes.
## Evidence (verbatim from paper)
> our model, augmented with a re-writer, achieves an overall score of 0.76 on the GenEval benchmark *[ghosh2024geneval]*.
## Citation
```bibtex
@misc{han2026generativerefinement,
title={Generative Refinement Networks for Visual Synthesis},
author={Jian Han et al.},
year={2026},
note={arXiv:2604.13030}
}
```
- arXiv: 2604.13030
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!