Independent reference. No vendor affiliation. Reprinted scores dated to their source; elsewhere we link the official board. Editorial policy.
Abstract
What113,000 multi-hop Wikipedia questions with sentence-level supporting facts; answered by reasoning over two documents
WhoYang, Qi, Zhang, Bengio, Cohen, Salakhutdinov, Manning; EMNLP 2018 (arXiv:1809.09600)
SettingsDistractor (10 paragraphs supplied) and fullwiki (retrieve from all of Wikipedia)
Leaderboardhotpotqa.github.io
Section III.ii · RAG Benchmarks|Reviewed 2026|HotpotQA facts verified 15 Aug 2026 against arXiv:1809.09600 and hotpotqa.github.io

HotpotQA: Multi-Hop Question Answering With Checkable Evidence

The foundational multi-hop QA benchmark. 113,000 Wikipedia questions that cannot be answered from a single document, each shipped with the exact sentences the answer depends on so the reasoning chain is checkable, not just the final answer. The benchmark that made supporting-fact supervision standard.

01

What HotpotQA measures

HotpotQA, introduced by Yang et al. at EMNLP 2018, tests whether a system can answer questions that require combining information from more than one source. Its roughly 113,000 crowd-sourced questions are each built from a pair of Wikipedia articles, and by construction the answer cannot be found in either article alone: the system has to chain a fact from the first to reach the answer in the second. That two-hop requirement is what separates HotpotQA from single-document reading-comprehension datasets like SQuAD, which a model can often solve by pattern-matching a span in one passage.

The benchmark's defining contribution is sentence-level supporting facts. Every question is annotated with the specific sentences needed to justify the answer, and a system is scored on whether it identifies those sentences as well as on whether it produces the right answer. The authors call this "explainable" multi-hop QA: the evidence is a first-class output, not an afterthought. This design discourages the shortcut where a model guesses a plausible answer without doing the reasoning, because a correct answer with the wrong evidence loses joint credit.

HotpotQA also introduced a category of factoid comparison questions, which ask a system to extract a property from two entities and compare them. These sit alongside the more common bridge questions and stress a different skill: not following a chain of retrieval, but pulling parallel facts and reasoning over the pair. Together the two question types make HotpotQA a broader test of multi-hop reasoning than a bridge-only dataset would be.

02

The two settings: distractor and fullwiki

HotpotQA is evaluated in two settings that separate reasoning from retrieval. They report as two different leaderboards and are not comparable to each other, so any quoted HotpotQA number should say which setting it came from.

Setting
Context provided
What it tests
Distractor
10 paragraphs supplied (2 gold + 8 distractors)
Reasoning in isolation from retrieval. The system has the answer somewhere in its context and must find it and cite the supporting sentences. Higher scores; the easier of the two settings.
Fullwiki
No paragraphs supplied; retrieve from all of Wikipedia
Open-domain, RAG-shaped. The system must retrieve candidate documents before reasoning, so retrieval errors compound with reasoning errors. The harder setting, and the one that matches a real retrieval pipeline.

The distractor setting is the closer analogue to a reading-comprehension task: the answer is somewhere in the 10 supplied paragraphs, and the 8 distractors are there to punish sloppy attention. The fullwiki setting is the RAG-shaped one, and it is where multi-hop is genuinely hard: the system must retrieve the right two documents out of millions before it can reason at all, so a single retrieval miss on the first hop makes the second hop impossible. This is exactly the failure mode a production retrieval pipeline has to survive, which is why fullwiki is the more informative setting for RAG work.

03

Bridge and comparison questions

The two question types exercise different parts of the multi-hop skill and are worth reading separately.

Type
What it requires
Bridge
The answer lives in a second document that can only be reached by first identifying a bridging entity in the first document. Tests genuine two-hop retrieval and reasoning.
Comparison
The system must extract a property from two entities and compare them (which came first, which is larger, whether they share an attribute). Often yes/no or one-of-two, which is why supporting-fact scoring matters here.

Comparison questions are the ones most exposed to lucky guessing, since many reduce to a yes/no or a choice between two named entities. This is the clearest argument for the supporting-fact score: a model that answers "yes" correctly but cites the wrong sentences has not demonstrated the reasoning, and the joint metric refuses it full credit. Reading answer-only accuracy on the comparison subset without the supporting-fact score overstates how much genuine multi-hop reasoning is happening.

04

Scoring: answer, supporting facts, and the joint metric

HotpotQA scores two things and combines them. The answer score is exact-match (EM) and token-level F1 against the gold answer. The supporting-fact score is EM and F1 against the annotated supporting sentences. The joint EM and joint F1 combine the two so that a system only earns full joint credit when it gets both the answer and its evidence right. The joint number is the one that reflects the benchmark's intent; the answer-only number is easier and less honest to quote alone.

Because the supporting facts are annotated at the sentence level, the benchmark rewards models that ground their answers in specific evidence rather than in a diffuse read of the whole context. That property has aged well: it is the same idea that citation-grounded RAG systems in 2026 are built around, which is part of why HotpotQA is still taught even though its raw answer scores have climbed. See our RAG evaluation reference for how faithfulness and grounding are measured in the generation stage more broadly.

05

Where HotpotQA sits in 2026

HotpotQA is foundational, not frontier. Top distractor-setting systems now reach the low-to-mid 70s in answer EM and the fullwiki board sits in the high 60s (official leaderboard, checked August 2026), so the benchmark no longer separates the strongest current systems the way it did at launch. It is also Wikipedia-only and predominantly two-hop, which caps how far it can stress the long retrieval chains that harder modern questions demand. We do not reprint a per-model leaderboard table here: HotpotQA maintains its own live boards for the distractor and fullwiki settings, and those are the honest place to read current standings with the setting attached.

For evaluating a production retrieval-augmented pipeline on multi-hop reasoning, MultiHopRAG (Tang et al., 2024) is the more directly applicable benchmark, because it is designed around the RAG workflow and evaluates which retrieved documents the answer depends on. HotpotQA remains the reference everyone cites, the cleanest teaching example of supporting-fact supervision, and a stable trend line against older systems. Read the two together: HotpotQA for the concept and the history, MultiHopRAG for the current RAG-shaped measurement. See how both fit the wider picture on our RAG benchmarks comparison.

06

When to use HotpotQA in 2026

Reach for HotpotQA when you want a well-understood, widely-cited multi-hop QA benchmark with checkable evidence: for teaching or explaining multi-hop reasoning, for a trend line against 2019-2024 systems, or for stress-testing whether a system grounds its answers in the right sentences rather than guessing. Use the fullwiki setting, not just distractor, if retrieval is part of what you are evaluating, and always quote the joint EM and F1 alongside the answer-only score. For a production RAG pipeline on multi-hop queries prefer MultiHopRAG; for pure retrieval quality use BEIR; for embedding quality use MTEB; for end-to-end RAG faithfulness use RAGAS.

Editor's verdictHotpotQA is the foundational multi-hop QA benchmark and the origin of sentence-level supporting-fact scoring, an idea that outlived its raw scores. Quote it in the fullwiki setting with the joint answer-and-evidence metric, treat distractor and fullwiki as separate numbers, and reach for MultiHopRAG when you are measuring a real RAG pipeline rather than the concept.
Reader Questions
Q.01What is HotpotQA?+
HotpotQA is a multi-hop question-answering dataset introduced by Yang et al. at EMNLP 2018. It contains about 113,000 crowd-sourced questions built from pairs of Wikipedia articles, where answering each question requires finding and reasoning over two supporting documents rather than one. Each question ships with sentence-level supporting facts (the exact sentences a correct answer depends on), which makes the reasoning chain checkable rather than a black box. It is the canonical reference for multi-hop QA and is one of the most widely cited retrieval-and-reasoning benchmarks in the field.
Q.02What is the difference between the distractor and fullwiki settings?+
HotpotQA runs in two settings that test different capabilities. In the distractor setting the system is handed 10 paragraphs (the 2 gold paragraphs that contain the answer plus 8 distractor paragraphs retrieved as plausible-but-wrong context) and must find the answer and cite the supporting sentences; this isolates reasoning from retrieval. In the fullwiki setting no paragraphs are provided and the system must retrieve from the whole of Wikipedia before reasoning; this is the open-domain, RAG-shaped setting and is substantially harder because retrieval errors compound with reasoning errors. Scores in the fullwiki setting are always lower than in the distractor setting for the same system.
Q.03What are supporting facts in HotpotQA?+
Supporting facts are the specific sentences from the source paragraphs that are needed to answer the question. HotpotQA was one of the first QA benchmarks to annotate them and to score them directly, so a system is graded not only on whether it produced the right answer but on whether it identified the right evidence. This is what the authors mean by 'explainable' multi-hop QA: a model that guesses the correct answer without pointing at the correct evidence is penalised, which discourages shortcut reasoning and lucky pattern-matching.
Q.04How is HotpotQA scored?+
Two axes, each with exact-match (EM) and F1. The answer score compares the predicted answer span against the gold answer (EM for exact, F1 for token overlap). The supporting-fact score compares the predicted supporting sentences against the annotated set (again EM and F1). A joint metric combines the two, so a system only earns full joint credit when it gets both the answer and the evidence right. Reporting the joint EM and F1 alongside the answer-only numbers is the honest way to quote HotpotQA, because answer-only scores hide whether the reasoning chain was actually grounded.
Q.05What kinds of questions does HotpotQA contain?+
Two main types. Bridge questions require finding an intermediate entity in the first document to locate the answer in the second (for example, identifying a person from one article and then looking up a fact about them in another). Comparison questions ask the system to extract a property from two entities and compare them (for example, which of two films was released first, or whether two people share a nationality). Comparison questions are where sentence-level supporting-fact scoring matters most, because a model can occasionally guess a yes/no comparison correctly without doing the reasoning.
Q.06Is HotpotQA still useful in 2026?+
HotpotQA is foundational rather than frontier. Top distractor-setting systems now reach the low-to-mid 70s in answer EM and the fullwiki leaderboard sits in the high 60s (official leaderboard, checked August 2026), so the benchmark no longer separates the strongest frontier systems the way it did in 2019. It is Wikipedia-only and largely two-hop, which limits how much it stresses long retrieval chains. For evaluating a production RAG pipeline on multi-hop reasoning, MultiHopRAG is the more directly applicable benchmark because it is built around the retrieval-augmented-generation workflow. HotpotQA remains the reference everyone cites, a clean teaching benchmark for the supporting-fact idea, and a useful trend line against older systems.
RAG Benchmarks ComparedBEIR: Zero-Shot RetrievalMTEB: Embedding BenchmarkRAGAS: RAG ScoringRAG Evaluation MethodologyDSPy BenchmarksBenchmark Contamination

Sources

  1. [1] Yang, Z., Qi, P., Zhang, S., Bengio, Y., Cohen, W. W., Salakhutdinov, R., Manning, C. D. (2018). HotpotQA: A Dataset for Diverse, Explainable Multi-hop Question Answering. EMNLP 2018. arXiv:1809.09600.
  2. [2] HotpotQA project site and leaderboards (distractor and fullwiki settings; answer and supporting-fact EM/F1). hotpotqa.github.io. Accessed 15 Aug 2026.
  3. [3] Tang, Y., Yang, Y. (2024). MultiHop-RAG: Benchmarking Retrieval-Augmented Generation for Multi-Hop Queries. arXiv:2401.15391.
From the editor

Benchmarking Agents Review is published by Digital Signet, an independent firm that builds and ships AI agents in production for mid-market companies. If you are evaluating, designing, or productionising LLM agents and want a working second opinion, get in touch.

Book a 30-min scoping callDigital Signet →

30 minutes, free, independent.·1-page action plan within 48h.·Honest if not the right fit.