This benchmark evaluates a model's ability to perform high-order, multistep visual question answering by integrating visual scene graphs with external commonsense knowledge. It explicitly probes the model's reasoning process by requiring it to predict intermediate knowledge triplets alongside the final answer, enforcing explainability and self-diagnosis capabilities. Use when the user wants to benchmark on HVQR, or asks about evaluating this task. Reports triplet recall.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill hvqr-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Hvqr Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-hvqr-eval)More formats (shields.io, HTML) on the badges page.
---
name: hvqr-eval
description: This benchmark evaluates a model's ability to perform high-order, multistep visual question answering by integrating visual scene graphs with external commonsense knowledge. It explicitly probes the model's reasoning process by requiring it to predict intermediate knowledge triplets alongside the final answer, enforcing explainability and self-diagnosis capabilities. Use when the user wants to benchmark on HVQR, or asks about evaluating this task. Reports triplet recall.
metadata:
skill_kind: dataset_eval
source_arxiv: 1909.10128
bibtex_key: cao2019hvqr
confidence: high
---
# hvqr-eval
> Explainable High-order Visual Question Reasoning: A New Benchmark and Knowledge-routed Network — Cao et al. (2019) (arXiv:1909.10128, 2019)
## What this evaluates
This benchmark evaluates a model's ability to perform high-order, multistep visual question answering by integrating visual scene graphs with external commonsense knowledge. It explicitly probes the model's reasoning process by requiring it to predict intermediate knowledge triplets alongside the final answer, enforcing explainability and self-diagnosis capabilities.
## Datasets
- **HVQR** — total 157201; splits: train (94815), val (30676), test (31710)
## Metrics
- `triplet recall` **(primary)** — range: [0, 1]
- For each question, recall is calculated as the number of correctly predicted reasoning triplets divided by the number of predicted triplets. The final metric is the average recall across all QA pairs in the dataset.
## Input / output format
**Input**: A natural image and a natural language question requiring multistep reasoning.
**Output**: A final answer string and a sequence of predicted reasoning triplets (or query layout) representing the intermediate inference steps.
## Scoring recipe
```python
def compute_triplet_recall(predictions, golds):
recalls = []
for pred_triplets, gold_triplets in zip(predictions, golds):
if len(pred_triplets) == 0:
recalls.append(0.0)
else:
correct = sum(1 for t in pred_triplets if t in gold_triplets)
recalls.append(correct / len(pred_triplets))
return sum(recalls) / len(recalls)
```
## Common pitfalls
- The dataset enforces that each knowledge triplet appears only once across all questions to prevent overfitting; models relying on memorized facts will fail on test splits.
- Evaluation requires explicit prediction of intermediate reasoning triplets, not just the final answer; black-box VQA models that skip step-by-step reasoning will score zero on the primary metric.
- Questions are human-rewritten for diversity and readability, so template-matching or rigid parsing strategies will not work.
## Evidence (verbatim from paper)
> For each QA pair, the explainable evaluation metric calculates triplet precisions for each question, $recall=\frac{\#correct\_triplets}{\#predicted\_triplets}$ and the average recall of all QA pairs as the final recall.
## Citation
```bibtex
@misc{cao2019hvqr,
title={Explainable High-order Visual Question Reasoning: A New Benchmark and Knowledge-routed Network},
author={Cao et al. (2019)},
year={2019},
note={arXiv:1909.10128}
}
```
- arXiv: 1909.10128
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!