Evaluates a model's ability to perform fine-grained, instance-level understanding on images and videos. It probes spatial-temporal grounding, multi-level annotation comprehension (captions, temporal changes), and multiple-choice question answering over explicitly prompted visual regions. Use when the user wants to benchmark on Inst-IT Bench, or asks about evaluating this task. Reports average score.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill inst-it-bench-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Inst It Bench Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-inst-it-bench-eval)More formats (shields.io, HTML) on the badges page.
---
name: inst-it-bench-eval
description: Evaluates a model's ability to perform fine-grained, instance-level understanding on images and videos. It probes spatial-temporal grounding, multi-level annotation comprehension (captions, temporal changes), and multiple-choice question answering over explicitly prompted visual regions. Use when the user wants to benchmark on Inst-IT Bench, or asks about evaluating this task. Reports average score.
metadata:
skill_kind: dataset_eval
source_arxiv: 2412.03565
bibtex_key: peng2024instit
confidence: high
---
# inst-it-bench-eval
> INST-IT: Boosting Instance Understanding via Explicit Visual Prompt Instruction Tuning — Peng et al. (2024) (arXiv:2412.03565, 2024)
## What this evaluates
Evaluates a model's ability to perform fine-grained, instance-level understanding on images and videos. It probes spatial-temporal grounding, multi-level annotation comprehension (captions, temporal changes), and multiple-choice question answering over explicitly prompted visual regions.
## Datasets
- **Inst-IT Bench** — total ?; splits: test (-1)
## Metrics
- `average score` **(primary)** — range: percent
- Percentage of correctly answered multiple-choice questions on the Inst-IT Bench dataset. Calculated as (number of correct predictions / total number of instances) * 100.
## Input / output format
**Input**: Images or video frames with explicit visual prompts (e.g., bounding boxes or highlighted regions) overlaid, accompanied by an instruction prompt (e.g., multiple-choice question or open-ended query).
**Output**: Text response containing the selected option letter/answer for multiple-choice questions, or a generated caption/QA response for open-ended tasks.
## Scoring recipe
```python
def compute_average_score(predictions, gold):
correct = sum(1 for p, g in zip(predictions, gold) if p.strip().upper() == g.strip().upper())
return (correct / len(gold)) * 100
```
## Common pitfalls
- The benchmark explicitly uses visual prompts (bounding boxes/regions) in the input, which differs from standard image/video benchmarks that only provide raw pixels.
- Inst-IT Bench contains both image (Inst-IT-I) and video (Inst-IT-V) splits evaluated in multiple-choice format; results should not be conflated with open-ended or zero-shot benchmarks like ViP-Bench or RefCOCOg.
- The model is trained via a continuous instruction-tuning paradigm with frozen vision encoder layers; evaluating without this specific training recipe will yield baseline LLaVA-NeXT performance, not the proposed method.
## Evidence (verbatim from paper)
> We conduct extensive evaluations on Inst-IT Bench. The results in [Tab. 2] show that with instruction tuning using Inst-IT Dataset, our models achieve a significant improvement of nearly 20% on average score, validating the effectiveness of Inst-IT.
## Citation
```bibtex
@misc{peng2024instit,
title={INST-IT: Boosting Instance Understanding via Explicit Visual Prompt Instruction Tuning},
author={Peng et al. (2024)},
year={2024},
note={arXiv:2412.03565}
}
```
- arXiv: 2412.03565
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!