This benchmark evaluates a model's ability to perform true multimodal in-context learning by requiring it to solve tasks that depend on both visual and textual information from provided demonstrations. It probes whether models can correctly attend to and utilize visual context in few-shot examples rather than relying on superficial textual patterns or prior knowledge. Use when the user wants to benchmark on TrueMICL, 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 truemicl-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Truemicl Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-truemicl-eval)More formats (shields.io, HTML) on the badges page.
---
name: truemicl-eval
description: This benchmark evaluates a model's ability to perform true multimodal in-context learning by requiring it to solve tasks that depend on both visual and textual information from provided demonstrations. It probes whether models can correctly attend to and utilize visual context in few-shot examples rather than relying on superficial textual patterns or prior knowledge. Use when the user wants to benchmark on TrueMICL, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2507.15807
bibtex_key: chen2025truemicl
confidence: high
---
# truemicl-eval
> True Multimodal In-Context Learning Needs Attention to the Visual Context — Shuo Chen et al. (2025) (arXiv:2507.15807, 2025)
## What this evaluates
This benchmark evaluates a model's ability to perform true multimodal in-context learning by requiring it to solve tasks that depend on both visual and textual information from provided demonstrations. It probes whether models can correctly attend to and utilize visual context in few-shot examples rather than relying on superficial textual patterns or prior knowledge.
## Datasets
- **TrueMICL** — total ?; splits: test (-1), support (-1)
## Metrics
- `accuracy` **(primary)** — range: percent
- Percentage of correctly answered queries. For numerical answers, strict exact match is required. For textual answers, keyword-based matching is used to determine correctness.
## Input / output format
**Input**: A query image, a text prompt, and 4 demonstration examples (image-text pairs) retrieved from a support set.
**Output**: A textual or numerical answer string generated by the model.
## Scoring recipe
```python
def compute_accuracy(predictions, golds, is_numerical):
correct = 0
for pred, gold in zip(predictions, golds):
if is_numerical:
if pred.strip() == gold.strip():
correct += 1
else:
keywords = gold.split() # Simplified keyword extraction per paper
if any(kw.lower() in pred.lower() for kw in keywords):
correct += 1
return (correct / len(golds)) * 100
```
## Common pitfalls
- Models often ignore visual tokens in demonstrations and rely solely on textual patterns, leading to artificially high accuracy on standard benchmarks but failure on TrueMICL.
- Keyword-based matching for textual answers lacks a standardized threshold or explicit keyword list in the paper, which may cause inconsistent evaluation across different implementations.
- Using standard VL datasets (e.g., VQAv2) for MICL evaluation is misleading because they do not require visual context from demonstrations to solve correctly.
## Evidence (verbatim from paper)
> The evaluation metric for TrueMICL is accuracy. For numerical answers, only strict matching is considered correct, while textual answers are evaluated through keyword-based matching.
## Citation
```bibtex
@misc{chen2025truemicl,
title={True Multimodal In-Context Learning Needs Attention to the Visual Context},
author={Shuo Chen et al. (2025)},
year={2025},
note={arXiv:2507.15807}
}
```
- arXiv: 2507.15807
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!