Evaluates long-horizon video understanding and reasoning capabilities of multimodal models on extended video sequences. Use when the user wants to benchmark on Video-MME, 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 video-mme-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Video Mme Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-video-mme-eval)More formats (shields.io, HTML) on the badges page.
---
name: video-mme-eval
description: Evaluates long-horizon video understanding and reasoning capabilities of multimodal models on extended video sequences. Use when the user wants to benchmark on Video-MME, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2603.01455
bibtex_key: lian2026mmmem
confidence: high
---
# video-mme-eval
> From Verbatim to Gist: Distilling Pyramidal Multimodal Memory via Semantic Information Bottleneck for Long-Horizon Video Agents — Niu Lian et al. (2026) (arXiv:2603.01455, 2026)
## What this evaluates
Evaluates long-horizon video understanding and reasoning capabilities of multimodal models on extended video sequences.
## Datasets
- **Video-MME** — total ?; splits: test (-1)
## Metrics
- `accuracy` **(primary)** — range: percent
- Percentage of correctly answered video-based questions. Reported separately for short, medium, and long video durations, as well as an overall average.
## Input / output format
**Input**: Long-horizon video clips, optionally accompanied by subtitles or captions.
**Output**: Textual answers to video-based questions (VQA).
## Scoring recipe
```python
def score(predictions, gold):
correct = sum(1 for p, g in zip(predictions, gold) if p.strip().lower() == g.strip().lower())
return (correct / len(gold)) * 100
```
## Common pitfalls
- Performance is highly sensitive to subtitle availability (w/ vs w/o settings reported separately).
- Evaluation spans short, medium, and long video durations, requiring models to handle varying temporal contexts.
## Evidence (verbatim from paper)
> Table 1: Comparison on two long-video understanding benchmarks: Video-MME and MLVU. For Video-MME, we report results under both w/ and w/o subtitle settings (w/ = with subtitles; w/o = without subtitles).
## Citation
```bibtex
@misc{lian2026mmmem,
title={From Verbatim to Gist: Distilling Pyramidal Multimodal Memory via Semantic Information Bottleneck for Long-Horizon Video Agents},
author={Niu Lian et al. (2026)},
year={2026},
note={arXiv:2603.01455}
}
```
- arXiv: 2603.01455
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!