Evaluates the quality of dense image captions by measuring how well they enable downstream multimodal models to answer visual questions accurately. It probes fine-grained visual perception, structured description capability, and the utility of captions for non-visual reasoning. Use when the user wants to benchmark on InfoVQA, DocVQA, ChartQA, Real World QA, Math Vista, SEED2 Plus, MME, MMB, MMStar, MMVet, AI2D, GQA, MMMU, WeMath, 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 caprl-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Caprl Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-caprl-eval)More formats (shields.io, HTML) on the badges page.
---
name: caprl-eval
description: Evaluates the quality of dense image captions by measuring how well they enable downstream multimodal models to answer visual questions accurately. It probes fine-grained visual perception, structured description capability, and the utility of captions for non-visual reasoning. Use when the user wants to benchmark on InfoVQA, DocVQA, ChartQA, Real World QA, Math Vista, SEED2 Plus, MME, MMB, MMStar, MMVet, AI2D, GQA, MMMU, WeMath, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2509.22647
bibtex_key: xing2025caprl
confidence: high
---
# caprl-eval
> CapRL: Stimulating Dense Image Caption Capabilities via Reinforcement Learning — Long Xing et al. (2025) (arXiv:2509.22647, 2025)
## What this evaluates
Evaluates the quality of dense image captions by measuring how well they enable downstream multimodal models to answer visual questions accurately. It probes fine-grained visual perception, structured description capability, and the utility of captions for non-visual reasoning.
## Datasets
- **InfoVQA** — total ?; splits: test (-1)
- **DocVQA** — total ?; splits: test (-1)
- **ChartQA** — total ?; splits: test (-1)
- **Real World QA** — total ?; splits: test (-1)
- **Math Vista** — total ?; splits: test (-1)
- **SEED2 Plus** — total ?; splits: test (-1)
- **MME** — total ?; splits: test (-1)
- **MMB** — total ?; splits: test (-1)
- **MMStar** — total ?; splits: test (-1)
- **MMVet** — total ?; splits: test (-1)
- **AI2D** — total ?; splits: test (-1)
- **GQA** — total ?; splits: test (-1)
- **MMMU** — total ?; splits: test (-1)
- **WeMath** — total ?; splits: test (-1)
## Metrics
- `accuracy` **(primary)** — range: percent
- Standard multiple-choice or open-ended accuracy: the percentage of correctly answered questions or matched captions. For Prism evaluation, it is the MCQ accuracy of a non-visual LLM answering based solely on the generated caption.
## Input / output format
**Input**: Image (for pretraining eval) or Image + Question (for Prism/VQA eval).
**Output**: Dense caption text (for pretraining eval) or multiple-choice answer letter/text (for Prism/VQA eval).
## Scoring recipe
```python
def compute_accuracy(predictions, gold):
correct = 0
for pred, gold_item in zip(predictions, gold):
if normalize(pred) == normalize(gold_item):
correct += 1
return (correct / len(predictions)) * 100
```
## Common pitfalls
- Using subjective LVLM-as-a-judge rewards causes reward hacking, where models generate overly short or verbose captions that satisfy the judge but lack factual utility.
- Option bias in LLMs can distort accuracy scores if questions are not shuffled or evaluated over multiple sampling rounds (N≥4 recommended).
- Averaging across diverse benchmarks (charts, documents, natural images) can mask domain-specific failures; always check per-domain scores.
## Evidence (verbatim from paper)
> In our setup, we fix Stage 2 with a fine-tuned Qwen2.5-3B-Instruct as the answering LLM, ensuring that benchmark performance directly reflects the quality of captions produced by the captioner. ... Due to inherent option biases in the LLM, the measured accuracy fails to serve as a reliable proxy for reward, thereby misdirecting the optimization of the policy model.
## Citation
```bibtex
@misc{xing2025caprl,
title={CapRL: Stimulating Dense Image Caption Capabilities via Reinforcement Learning},
author={Long Xing et al. (2025)},
year={2025},
note={arXiv:2509.22647}
}
```
- arXiv: 2509.22647
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!