Evaluates text-to-image generation models on their ability to synthesize images from multiple reference images and text prompts. It probes adherence to complex instructions, consistency with reference attributes, and robustness to domain mismatches, scale discrepancies, rare concepts, and multilingual text. Use when the user wants to benchmark on MultiBanana, or asks about evaluating this task. Reports MultiBanana score.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill multibanana-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Multibanana Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-multibanana-eval)More formats (shields.io, HTML) on the badges page.
---
name: multibanana-eval
description: Evaluates text-to-image generation models on their ability to synthesize images from multiple reference images and text prompts. It probes adherence to complex instructions, consistency with reference attributes, and robustness to domain mismatches, scale discrepancies, rare concepts, and multilingual text. Use when the user wants to benchmark on MultiBanana, or asks about evaluating this task. Reports MultiBanana score.
metadata:
skill_kind: dataset_eval
source_arxiv: 2511.22989
bibtex_key: oshima2025multibanana
confidence: high
---
# multibanana-eval
> MultiBanana: A Challenging Benchmark for Multi-Reference Text-to-Image Generation — Oshima et al. (2025) (arXiv:2511.22989, 2025)
## What this evaluates
Evaluates text-to-image generation models on their ability to synthesize images from multiple reference images and text prompts. It probes adherence to complex instructions, consistency with reference attributes, and robustness to domain mismatches, scale discrepancies, rare concepts, and multilingual text.
## Datasets
- **MultiBanana** — total ?; splits: test (-1); repo https://github.com/matsuolab/multibanana
## Metrics
- `MultiBanana score` **(primary)** — range: percent
- A composite score computed by LLM judges (Gemini-2.5 and GPT-5) evaluating generated images against reference images and prompts. It aggregates sub-scores including Instruction Alignment, Reference Consistency, background consistency, physical realism, and visual quality into a Total Score.
## Input / output format
**Input**: A set of reference images (2 to 8) and a text prompt describing the target image.
**Output**: A single generated image.
## Scoring recipe
```python
def compute_multibanana_score(gen_img, ref_imgs, prompt):
# LLM judges evaluate generation against references and prompt
score_gemini = gemini_2_5_judge(gen_img, ref_imgs, prompt)
score_gpt = gpt_5_judge(gen_img, ref_imgs, prompt)
# Average across evaluators to get final MultiBanana score
return (score_gemini + score_gpt) / 2
```
## Common pitfalls
- OmniGen2 is restricted to a maximum of 6 reference images, unlike other models tested up to 8.
- Closed-source models may achieve high reference adherence but suffer from compositional collapse or over-crowding, while open-source models may omit subjects but maintain visual coherence.
- The benchmark relies entirely on LLM-as-a-judge evaluation, which may introduce bias or inconsistency compared to human evaluation.
## Evidence (verbatim from paper)
> As described in Section[3.4], the evaluation is conducted using Gemini-2.5 and GPT-5. In the main paper, we report the average scores from Gemini-2.5 and GPT-5, while the individual results for each evaluator are provided in the supplementary material. We compute the MultiBanana scores for each task type defined in Section[3.1], and present the results in [Table 3] and Section[E.1].
## Citation
```bibtex
@misc{oshima2025multibanana,
title={MultiBanana: A Challenging Benchmark for Multi-Reference Text-to-Image Generation},
author={Oshima et al. (2025)},
year={2025},
note={arXiv:2511.22989}
}
```
- arXiv: 2511.22989
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!