qa-benchmarks-eval
Stateful Evidence-Driven Retrieval-Augmented Generation with Iterative Reasoning — Qi Dong et al. (2026) (arXiv:2604.14170, 2026)
What this evaluates
Evaluates the capability of retrieval-augmented generation systems to answer complex, multi-hop, and long-form questions by iteratively retrieving, structuring, and accumulating evidence from documents.
Datasets
- StrategyQA — total ?; splits: test (-1)
- ASQA — total ?; splits: test (-1)
- NQ — total ?; splits: test (-1)
- 2WikiMultiHopQA — total ?; splits: test (-1)
- HotpotQA — total ?; splits: test (-1)
Metrics
EM, F1, ACC (primary) — range: [0, 1]
- EM: 1 if predicted answer exactly matches gold answer, else 0. F1: token-level F1 score between predicted and gold answers. ACC: accuracy (proportion of exact matches).
Input / output format
Input: Question from a QA benchmark, optionally with retrieved documents injected into the context.
Output: Generated natural language answer string.
Scoring recipe
def compute_metrics(predictions, golds):
em_scores = [1.0 if pred.strip() == gold.strip() else 0.0 for pred, gold in zip(predictions, golds)]
f1_scores = [token_f1(pred, gold) for pred, gold in zip(predictions, golds)]
acc = sum(em_scores) / len(em_scores)
return {"EM": sum(em_scores)/len(em_scores), "F1": sum(f1_scores)/len(f1_scores), "ACC": acc}
Common pitfalls
- The paper samples exactly 2000 instances per benchmark for ablation and noise experiments, which may not represent the full dataset distribution.
- F1 and ACC are reported alongside EM, but on long-form QA (ASQA), F1 is the primary reliability metric while ACC/EM are often near zero.
- Iteration count significantly impacts results (5 vs 6 iterations show diminishing returns), so comparisons must fix iteration depth.
Evidence (verbatim from paper)
Table 1. Performance comparison between the proposed framework and representative baselines on five QA benchmarks ... EM, F1, ACC ... The overall performance and comparison results are presented in Table 1, where the best-performing method for each metric is highlighted in bold. Our proposed framework consistently achieves the strongest performance across all benchmarks and evaluation metrics.
Citation
@misc{dong2026stateful,
title={Stateful Evidence-Driven Retrieval-Augmented Generation with Iterative Reasoning},
author={Qi Dong et al. (2026)},
year={2026},
note={arXiv:2604.14170}
}
1---2name: qa-benchmarks-eval3description: Evaluates the capability of retrieval-augmented generation systems to answer complex, multi-hop, and long-form questions by iteratively retrieving, structuring, and accumulating evidence from documents. Use when the user wants to benchmark on StrategyQA, ASQA, NQ, 2WikiMultiHopQA, HotpotQA, or asks about evaluating this task. Reports EM, F1, ACC.4---56# qa-benchmarks-eval78> Stateful Evidence-Driven Retrieval-Augmented Generation with Iterative Reasoning — Qi Dong et al. (2026) (arXiv:2604.14170, 2026)910## What this evaluates1112Evaluates the capability of retrieval-augmented generation systems to answer complex, multi-hop, and long-form questions by iteratively retrieving, structuring, and accumulating evidence from documents.1314## Datasets1516- **StrategyQA** — total ?; splits: test (-1)17- **ASQA** — total ?; splits: test (-1)18- **NQ** — total ?; splits: test (-1)19- **2WikiMultiHopQA** — total ?; splits: test (-1)20- **HotpotQA** — total ?; splits: test (-1)2122## Metrics2324- `EM, F1, ACC` **(primary)** — range: [0, 1]25 - EM: 1 if predicted answer exactly matches gold answer, else 0. F1: token-level F1 score between predicted and gold answers. ACC: accuracy (proportion of exact matches).2627## Input / output format2829**Input**: Question from a QA benchmark, optionally with retrieved documents injected into the context.3031**Output**: Generated natural language answer string.3233## Scoring recipe3435```python36def compute_metrics(predictions, golds):37 em_scores = [1.0 if pred.strip() == gold.strip() else 0.0 for pred, gold in zip(predictions, golds)]38 f1_scores = [token_f1(pred, gold) for pred, gold in zip(predictions, golds)]39 acc = sum(em_scores) / len(em_scores)40 return {"EM": sum(em_scores)/len(em_scores), "F1": sum(f1_scores)/len(f1_scores), "ACC": acc}41```4243## Common pitfalls4445- The paper samples exactly 2000 instances per benchmark for ablation and noise experiments, which may not represent the full dataset distribution.46- F1 and ACC are reported alongside EM, but on long-form QA (ASQA), F1 is the primary reliability metric while ACC/EM are often near zero.47- Iteration count significantly impacts results (5 vs 6 iterations show diminishing returns), so comparisons must fix iteration depth.4849## Evidence (verbatim from paper)5051> Table 1. Performance comparison between the proposed framework and representative baselines on five QA benchmarks ... EM, F1, ACC ... The overall performance and comparison results are presented in Table 1, where the best-performing method for each metric is highlighted in bold. Our proposed framework consistently achieves the strongest performance across all benchmarks and evaluation metrics.5253## Citation5455```bibtex56@misc{dong2026stateful,57 title={Stateful Evidence-Driven Retrieval-Augmented Generation with Iterative Reasoning},58 author={Qi Dong et al. (2026)},59 year={2026},60 note={arXiv:2604.14170}61}62```6364- arXiv: 2604.14170