Evaluates multimodal models' ability to detect unintended content, structural, and low-level appearance changes in image-to-image transitions. It probes fine-grained visual reasoning and pixel-level alignment capabilities by asking models to assess fidelity across three distinct dimensions. Use when the user wants to benchmark on StableI2I-Bench, or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill stablei2i-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Stablei2i Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-stablei2i-eval)More formats (shields.io, HTML) on the badges page.
---
name: stablei2i-eval
description: Evaluates multimodal models' ability to detect unintended content, structural, and low-level appearance changes in image-to-image transitions. It probes fine-grained visual reasoning and pixel-level alignment capabilities by asking models to assess fidelity across three distinct dimensions. Use when the user wants to benchmark on StableI2I-Bench, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2605.04453
bibtex_key: li2026stablei2i
confidence: high
---
# stablei2i-eval
> StableI2I: Spotting Unintended Changes in Image-to-Image Transition — Li et al. (2026) (arXiv:2605.04453, 2026)
## What this evaluates
Evaluates multimodal models' ability to detect unintended content, structural, and low-level appearance changes in image-to-image transitions. It probes fine-grained visual reasoning and pixel-level alignment capabilities by asking models to assess fidelity across three distinct dimensions.
## Datasets
- **StableI2I-Bench** — total ?; splits: test (-1)
## Metrics
- `accuracy` **(primary)** — range: [0, 1]
- Proportion of correctly predicted answers (and problem types for Binary & Type QA) out of the total number of samples. Reported per dimension (Structure, Semantic, Low-level) and as an average.
## Input / output format
**Input**: Image pair $(I_{in}, I_{out})$ and an I2I control instruction $x$, formatted within a fixed task template/prompt.
**Output**: QA response indicating fidelity status (e.g., 'Yes'/'No' for error presence) and a problem type description.
## Scoring recipe
```python
def compute_accuracy(predictions, gold):
correct = 0
for pred, g_ans, g_type in zip(predictions, gold['answer'], gold['type']):
if pred['answer'] == g_ans and pred['type'] == g_type:
correct += 1
return correct / len(predictions)
```
## Common pitfalls
- Model performance is highly sensitive to the prompt template; removing structured priors causes significant drops in accuracy for general-purpose MLLMs.
- Structure-level evaluation requires pixel-level alignment, which is inherently difficult and often leads to low scores even when semantic content is preserved.
## Evidence (verbatim from paper)
> The reported values are the accuracy of samples where both the answer and the problem type in Binary & Type QA are predicted correctly.
## Citation
```bibtex
@misc{li2026stablei2i,
title={StableI2I: Spotting Unintended Changes in Image-to-Image Transition},
author={Li et al. (2026)},
year={2026},
note={arXiv:2605.04453}
}
```
- arXiv: 2605.04453
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!