Dense Passage Retrieval for Open-Domain Question Answering

Dense Passage Retrieval for Open-Domain Question Answering

Vladimir Karpukhin $^{}$, Barlas Oğuz $^{}$, Sewon Min $^{\dagger}$, Patrick Lewis
Ledell Wu, Sergey Edunov, Danqi Chen $^{\ddagger}$, Wen-tau Yih
Facebook AI $^{\dagger}$ University of Washington $^{\ddagger}$ Princeton University
[email protected], [email protected], [email protected], [email protected], [email protected], [email protected]
[email protected]
[email protected]

$^{*}$ Equal contribution

Abstract

Open-domain question answering relies on efficient passage retrieval to select candidate contexts, where traditional sparse vector space models, such as TF-IDF or BM25, are the de facto method. In this work, we show that retrieval can be practically implemented using dense representations alone, where embeddings are learned from a small number of questions and passages by a simple dual-encoder framework. When evaluated on a wide range of open-domain QA datasets, our dense retriever outperforms a strong Lucene-BM25 system greatly by 9%-19% absolute in terms of top-20 passage retrieval accuracy, and helps our end-to-end QA system establish new state-of-the-art on multiple open-domain QA benchmarks.

Executive Summary: Open-domain question answering (QA) involves answering factual questions, such as "Who first voiced Meg on Family Guy?" or "Where was the 8th Dalai Lama born?", using a vast collection of documents like Wikipedia without relying on pre-provided context. This capability is increasingly vital today as search engines and virtual assistants handle more complex user queries from massive, diverse sources, yet traditional retrieval methods often fail to surface relevant passages due to their focus on exact keyword matches, leading to lower accuracy in real-world applications.

This document evaluates whether a simple dense retrieval approach—using learned vector representations of questions and passages—can outperform established sparse methods like BM25 for selecting candidate texts in open-domain QA systems. It demonstrates that such a retriever, trained solely on existing question-passage pairs, improves both standalone retrieval and overall QA performance.

The authors developed the Dense Passage Retriever (DPR) using a dual-encoder setup based on the BERT language model, which encodes questions and passages into fixed-size vectors for similarity comparison via dot product. They trained it on question-answer pairs from five datasets: Natural Questions (about 300,000 training examples from Google searches), TriviaQA (about 650,000 trivia questions), WebQuestions (about 3,000 questions from search suggestions), CuratedTREC (about 2,300 from TREC tracks), and SQuAD (about 87,000 reading comprehension questions). Positive passages were selected as those containing the answer or matching original contexts, with negatives drawn from batches or BM25 results; training used mini-batches of up to 128 examples over 40-100 epochs. Evaluation focused on retrieval accuracy (fraction of questions where top-k passages contain answers) and end-to-end QA exact match scores, using a 21-million-passage Wikipedia corpus from 2018 as the knowledge base.

Key findings include: First, DPR achieved top-20 retrieval accuracy of 78% on Natural Questions, 9-19 percentage points higher than BM25's 59%, and similar gains across four of five datasets. Second, even trained on just 1,000 examples, DPR surpassed BM25, with accuracy rising steadily to full datasets. Third, combining datasets for training boosted small-dataset performance (e.g., TREC top-20 accuracy from 75% single-dataset to 89% multi-dataset). Fourth, DPR enabled state-of-the-art end-to-end QA results, such as 41.5% exact match on Natural Questions (8 points above prior bests) and gains of 1-12 points on four datasets. Fifth, DPR processed queries at 995 per second on standard hardware, far faster than BM25's 24 per second.

These results mean dense retrieval captures semantic similarities—like matching "bad guy" to "villain"—beyond keyword overlap, directly enhancing QA accuracy by providing better candidates for answer extraction. This reduces errors in systems like search tools, where poor retrieval cascades to wrong answers, potentially affecting user trust and decision-making in information-heavy fields. Unexpectedly, DPR succeeded without extra pretraining, unlike prior methods, simplifying deployment while outperforming more complex rivals like ORQA and REALM on key benchmarks.

Adopt DPR as the core retriever in open-domain QA pipelines, starting with Wikipedia-scale corpora, and pair it with a BERT-based reader for end-to-end systems; for smaller datasets, train on combined sources to maximize gains. Where exact terms dominate (e.g., some SQuAD-like cases), combine DPR with BM25 via score fusion for hybrid benefits, trading minor complexity for 1-2 point accuracy lifts. Further, test DPR integration with generative models like BART for non-extractive QA, and scale to web-scale data via iterative hard-negative mining.

Limitations include DPR's weaker performance on SQuAD (due to high keyword bias and narrow training distribution) and longer upfront indexing time (8-9 hours on GPUs vs. BM25's 30 minutes), though inference remains efficient. Distant supervision (using answer-containing passages) slightly lowers accuracy by 1 point, and cross-dataset generalization drops 3-5 points without fine-tuning. Confidence is high for Wikipedia-based QA, supported by consistent multi-dataset results and ablations, but users should validate on domain-specific corpora before full reliance.

1. Introduction

Section Summary: Open-domain question answering involves finding factual answers to questions from a vast collection of documents, typically through a two-step process: first retrieving relevant passages and then reading them to extract the answer. Traditional retrieval methods like TF-IDF or BM25 rely on keyword matching, which can miss semantic connections such as synonyms, but newer dense vector embeddings capture these meanings better, though they historically required extensive pretraining data. This paper introduces a simple Dense Passage Retriever that fine-tunes pretrained models on existing question-passage pairs without extra pretraining, outperforming older methods and prior dense approaches to achieve higher accuracy in answering questions.

Open-domain question answering (QA) [1] is a task that answers factoid questions using a large collection of documents. While early QA systems are often complicated and consist of multiple components ([2, 3], inter alia), the advances of reading comprehension models suggest a much simplified two-stage framework: (1) a context retriever first selects a small subset of passages where some of them contain the answer to the question, and then (2) a machine reader can thoroughly examine the retrieved contexts and identify the correct answer [4]. Although reducing open-domain QA to machine reading is a very reasonable strategy, a huge performance degradation is often observed in practice[^1], indicating the needs of improving retrieval.

[^1]: For instance, the exact match score on SQuAD v1.1 drops from above 80% to less than 40% [5].

Retrieval in open-domain QA is usually implemented using TF-IDF or BM25 [6], which matches keywords efficiently with an inverted index and can be seen as representing the question and context in high-dimensional, sparse vectors (with weighting). Conversely, the dense, latent semantic encoding is complementary to sparse representations by design. For example, synonyms or paraphrases that consist of completely different tokens may still be mapped to vectors close to each other. Consider the question "Who is the bad guy in lord of the rings?", which can be answered from the context "Sala Baker is best known for portraying the villain Sauron in the Lord of the Rings trilogy." A term-based system would have difficulty retrieving such a context, while a dense retrieval system would be able to better match "bad guy" with "villain" and fetch the correct context. Dense encodings are also learnable by adjusting the embedding functions, which provides additional flexibility to have a task-specific representation. With special in-memory data structures and indexing schemes, retrieval can be done efficiently using maximum inner product search (MIPS) algorithms (e.g., [7, 8]).

However, it is generally believed that learning a good dense vector representation needs a large number of labeled pairs of question and contexts. Dense retrieval methods have thus never be shown to outperform TF-IDF/BM25 for open-domain QA before ORQA [9], which proposes a sophisticated inverse cloze task (ICT) objective, predicting the blocks that contain the masked sentence, for additional pretraining. The question encoder and the reader model are then fine-tuned using pairs of questions and answers jointly. Although ORQA successfully demonstrates that dense retrieval can outperform BM25, setting new state-of-the-art results on multiple open-domain QA datasets, it also suffers from two weaknesses. First, ICT pretraining is computationally intensive and it is not completely clear that regular sentences are good surrogates of questions in the objective function. Second, because the context encoder is not fine-tuned using pairs of questions and answers, the corresponding representations could be suboptimal.

In this paper, we address the question: can we train a better dense embedding model using only pairs of questions and passages (or answers), without additional pretraining? By leveraging the now standard BERT pretrained model [10] and a dual-encoder architecture [11], we focus on developing the right training scheme using a relatively small number of question and passage pairs. Through a series of careful ablation studies, our final solution is surprisingly simple: the embedding is optimized for maximizing inner products of the question and relevant passage vectors, with an objective comparing all pairs of questions and passages in a batch. Our Dense Passage Retriever (DPR) is exceptionally strong. It not only outperforms BM25 by a large margin (65.2% vs. 42.9% in Top-5 accuracy), but also results in a substantial improvement on the end-to-end QA accuracy compared to ORQA (41.5% vs. 33.3%) in the open Natural Questions setting [9, 12].

Our contributions are twofold. First, we demonstrate that with the proper training setup, simply fine-tuning the question and passage encoders on existing question-passage pairs is sufficient to greatly outperform BM25. Our empirical results also suggest that additional pretraining may not be needed. Second, we verify that, in the context of open-domain question answering, a higher retrieval precision indeed translates to a higher end-to-end QA accuracy. By applying a modern reader model to the top retrieved passages, we achieve comparable or better results on multiple QA datasets in the open-retrieval setting, compared to several, much complicated systems.

2. Background

Section Summary: Open-domain question answering involves taking a factual question, like who first voiced a character on a TV show or where a historical figure was born, and finding the answer within a massive collection of texts covering all sorts of topics. The system works by breaking documents into short passages and searching for an exact snippet of words in one of them that directly answers the question, rather than making up new text. Because the text collection can be enormous—from millions of articles to billions of web pages—the system first uses an efficient retriever to pick out just a handful of relevant passages for closer inspection.

The problem of open-domain QA studied in this paper can be described as follows. Given a factoid question, such as "Who first voiced Meg on Family Guy?" or "Where was the 8th Dalai Lama born?", a system is required to answer it using a large corpus of diversified topics. More specifically, we assume the extractive QA setting, in which the answer is restricted to a span appearing in one or more passages in the corpus. Assume that our collection contains $D$ documents, $d_1, d_2, \cdots, d_D$. We first split each of the documents into text passages of equal lengths as the basic retrieval units[^2] and get $M$ total passages in our corpus $\mathcal{C} = {p_1, p_2, \ldots, p_{M}}$, where each passage $p_i$ can be viewed as a sequence of tokens $w^{(i)}1, w^{(i)}2, \cdots, w^{(i)}{|p_i|}$. Given a question $q$, the task is to find a span $w^{(i)}s, w^{(i)}{s+1}, \cdots, w^{(i)}{e}$ from one of the passages $p_i$ that can answer the question. Notice that to cover a wide variety of domains, the corpus size can easily range from millions of documents (e.g., Wikipedia) to billions (e.g., the Web). As a result, any open-domain QA system needs to include an efficient retriever component that can select a small set of relevant texts, before applying the reader to extract the answer [4].[^3] Formally speaking, a retriever $R:(q, \mathcal{C}) \rightarrow \mathcal{C_F}$ is a function that takes as input a question $q$ and a corpus $\mathcal{C}$ and returns a much smaller filter set of texts $\mathcal{C_F} \subset \mathcal{C}$, where $|\mathcal{C_F}| = k \ll |\mathcal{C}|$. For a fixed $k$, a retriever can be evaluated in isolation on top-k retrieval accuracy, which is the fraction of questions for which $\mathcal{C_F}$ contains a span that answers the question.

[^2]: The ideal size and boundary of a text passage are functions of both the retriever and reader. We also experimented with natural paragraphs in our preliminary trials and found that using fixed-length passages performs better in both retrieval and final QA accuracy, as observed by [13].

[^3]: Exceptions include [14] and [15], which retrieves and generates the answers, respectively.

3. Dense Passage Retriever (DPR)

Section Summary: The Dense Passage Retriever (DPR) is a system designed to enhance question-answering by efficiently finding the most relevant text passages from a huge collection, like millions of documents, for any given question. It works by converting passages into compact numerical vectors using a neural network based on BERT ahead of time and storing them in a searchable index, then at query time, it encodes the question into a similar vector and pulls the top-matching passages based on how closely their vectors align, measured by a simple dot product. To train these encoders, DPR uses a technique that learns to rank relevant passages higher than irrelevant ones by comparing questions to positive examples and various types of negative ones, such as random selections or those from search tools, often processing them in batches for efficiency.

We focus our research in this work on improving the retrieval component in open-domain QA. Given a collection of $M$ text passages, the goal of our dense passage retriever (DPR) is to index all the passages in a low-dimensional and continuous space, such that it can retrieve efficiently the top $k$ passages relevant to the input question for the reader at run-time. Note that $M$ can be very large (e.g., 21 million passages in our experiments, described in Section 4.1) and $k$ is usually small, such as $20$ – $100$.

3.1 Overview

Our dense passage retriever (DPR) uses a dense encoder $E_P(\cdot)$ which maps any text passage to a $d$-dimensional real-valued vectors and builds an index for all the $M$ passages that we will use for retrieval. At run-time, DPR applies a different encoder $E_Q(\cdot)$ that maps the input question to a $d$-dimensional vector, and retrieves $k$ passages of which vectors are the closest to the question vector. We define the similarity between the question and the passage using the dot product of their vectors:

$ \begin{align} \mathrm{sim}(q, p) = E_Q(q)^{\intercal} E_P(p). \end{align}\tag{1} $

Although more expressive model forms for measuring the similarity between a question and a passage do exist, such as networks consisting of multiple layers of cross attentions, the similarity function needs to be decomposable so that the representations of the collection of passages can be pre-computed. Most decomposable similarity functions are some transformations of Euclidean distance (L2). For instance, cosine is equivalent to inner product for unit vectors and the Mahalanobis distance is equivalent to L2 distance in a transformed space. Inner product search has been widely used and studied, as well as its connection to cosine similarity and L2 distance [16, 17]. As our ablation study finds other similarity functions perform comparably (Section 5.2; Appendix B), we thus choose the simpler inner product function and improve the dense passage retriever by learning better encoders.

Encoders

Although in principle the question and passage encoders can be implemented by any neural networks, in this work we use two independent BERT [10] networks (base, uncased) and take the representation at the [CLS] token as the output, so $d = 768$.

Inference

During inference time, we apply the passage encoder $E_P$ to all the passages and index them using FAISS [18] offline. FAISS is an extremely efficient, open-source library for similarity search and clustering of dense vectors, which can easily be applied to billions of vectors. Given a question $q$ at run-time, we derive its embedding $v_q = E_Q(q)$ and retrieve the top $k$ passages with embeddings closest to $v_q$.

3.2 Training

Training the encoders so that the dot-product similarity Equation (1) becomes a good ranking function for retrieval is essentially a metric learning problem [19]. The goal is to create a vector space such that relevant pairs of questions and passages will have smaller distance (i.e., higher similarity) than the irrelevant ones, by learning a better embedding function.

Let $\mathcal{D} = { \langle q_i, p^+i, p^-{i, 1}, \cdots, p^-{i, n} \rangle }{i=1}^m$ be the training data that consists of $m$ instances. Each instance contains one question $q_i$ and one relevant (positive) passage $p^+i$, along with $n$ irrelevant (negative) passages $p^-{i, j}$. We optimize the loss function as the negative log likelihood of the positive passage:

$ \begin{align} && L(q_i, p^+i, p^-{i, 1}, \cdots, p^-{i, n}) \ &=& -\log \frac{ e^{\mathrm{sim}(q_i, p_i^+)} }{e^{\mathrm{sim}(q_i, p_i^+)} + \sum{j=1}^n{e^{\mathrm{sim}(q_i, p^-_{i, j})}}}. \nonumber \end{align}\tag{2} $

Positive and negative passages

For retrieval problems, it is often the case that positive examples are available explicitly, while negative examples need to be selected from an extremely large pool. For instance, passages relevant to a question may be given in a QA dataset, or can be found using the answer. All other passages in the collection, while not specified explicitly, can be viewed as irrelevant by default. In practice, how to select negative examples is often overlooked but could be decisive for learning a high-quality encoder. We consider three different types of negatives: (1) Random: any random passage from the corpus; (2) BM25: top passages returned by BM25 which don't contain the answer but match most question tokens; (3) Gold: positive passages paired with other questions which appear in the training set. We will discuss the impact of different types of negative passages and training schemes in Section 5.2. Our best model uses gold passages from the same mini-batch and one BM25 negative passage. In particular, re-using gold passages from the same batch as negatives can make the computation efficient while achieving great performance. We discuss this approach below.

In-batch negatives

Assume that we have $B$ questions in a mini-batch and each one is associated with a relevant passage. Let $\mathbf{Q}$ and $\mathbf{P}$ be the $(B\times d)$ matrix of question and passage embeddings in a batch of size $B$. $\mathbf{S} = \mathbf{Q}\mathbf{P}^T$ is a $(B\times B)$ matrix of similarity scores, where each row of which corresponds to a question, paired with $B$ passages. In this way, we reuse computation and effectively train on $B^2$ ($q_i$, $p_j$) question/passage pairs in each batch. Any ($q_i$, $p_j$) pair is a positive example when $i=j$, and negative otherwise. This creates $B$ training instances in each batch, where there are $B-1$ negative passages for each question.

The trick of in-batch negatives has been used in the full batch setting [20] and more recently for mini-batch [21, 22]. It has been shown to be an effective strategy for learning a dual-encoder model that boosts the number of training examples.

4. Experimental Setup

Section Summary: The researchers prepared their experimental data by processing the English Wikipedia from late 2018, extracting clean text from articles, removing elements like tables and lists, and dividing the content into about 21 million non-overlapping 100-word passages, each tagged with its article's title. They tested their system on five question-answering datasets—Natural Questions, TriviaQA, WebQuestions, CuratedTREC, and SQuAD v1.1—using the standard training, validation, and test splits from prior studies, with brief notes on each dataset's origins, such as real search queries or trivia from the web. For training, they selected positive passages by retrieving those containing answers via a search tool called BM25 or matching original gold-standard texts, discarding questions where matches failed due to processing differences.

In this section, we describe the data we used for experiments and the basic setup.

4.1 Wikipedia Data Pre-processing

Following [9], we use the English Wikipedia dump from Dec. 20, 2018 as the source documents for answering questions. We first apply the pre-processing code released in DrQA [4] to extract the clean, text-portion of articles from the Wikipedia dump. This step removes semi-structured data, such as tables, info-boxes, lists, as well as the disambiguation pages. We then split each article into multiple, disjoint text blocks of 100 words as passages, serving as our basic retrieval units, following [13], which results in 21, 015, 324 passages in the end.[^4] Each passage is also prepended with the title of the Wikipedia article where the passage is from, along with an [SEP] token.

[^4]: However, [13] also propose splitting documents into overlapping passages, which we do not find advantageous compared to the non-overlapping version.

4.2 Question Answering Datasets

We use the same five QA datasets and training/dev/testing splitting method as in previous work [9]. Below we briefly describe each dataset and refer readers to their paper for the details of data preparation.

Natural Questions (NQ) [12] was designed for end-to-end question answering. The questions were mined from real Google search queries and the answers were spans in Wikipedia articles identified by annotators.

TriviaQA [23] contains a set of trivia questions with answers that were originally scraped from the Web.

WebQuestions (WQ) [24] consists of questions selected using Google Suggest API, where the answers are entities in Freebase.

CuratedTREC (TREC) [25] sources questions from TREC QA tracks as well as various Web sources and is intended for open-domain QA from unstructured corpora.

SQuAD v1.1 [26] is a popular benchmark dataset for reading comprehension. Annotators were presented with a Wikipedia paragraph, and asked to write questions that could be answered from the given text. Although SQuAD has been used previously for open-domain QA research, it is not ideal because many questions lack context in absence of the provided paragraph. We still include it in our experiments for providing a fair comparison to previous work and we will discuss more in Section 5.1.

Selection of positive passages

Because only pairs of questions and answers are provided in TREC, WebQuestions and TriviaQA[^5], we use the highest-ranked passage from BM25 that contains the answer as the positive passage. If none of the top 100 retrieved passages has the answer, the question will be discarded. For SQuAD and Natural Questions, since the original passages have been split and processed differently than our pool of candidate passages, we match and replace each gold passage with the corresponding passage in the candidate pool.[^6] We discard the questions when the matching is failed due to different Wikipedia versions or pre-processing. Table 1 shows the number of questions in training/dev/test sets for all the datasets and the actual questions used for training the retriever.

[^5]: We use the unfiltered TriviaQA version and discard the noisy evidence documents mined from Bing.

[^6]: The improvement of using gold contexts over passages that contain answers is small. See Section 5.2 and Appendix A.

::: {caption="Table 1: Number of questions in each QA dataset. The two columns of Train denote the original training examples in the dataset and the actual questions used for training DPR after filtering. See text for more details."}

:::

::: {caption="Table 2: Top-20 & Top-100 retrieval accuracy on test sets, measured as the percentage of top 20/100 retrieved passages that contain the answer. Single and Multi denote that our Dense Passage Retriever (DPR) was trained using individial or combined training datasets (all the datasets excluding SQuAD). See text for more details."}

:::

5. Experiments: Passage Retrieval

Section Summary: This section evaluates the Dense Passage Retriever (DPR), a model that finds relevant text passages for answering questions using dense vector similarities, comparing it to traditional keyword-based methods like BM25 across several question-answering datasets. DPR generally outperforms BM25, especially for retrieving the top few most relevant passages, and combining the two approaches can boost results further; training on multiple datasets helps smaller ones most, while SQuAD shows weaker performance due to high overlap between questions and passages plus data bias from a limited set of articles. Experiments also reveal that DPR needs only about 1,000 training examples to surpass BM25 and improves with more data, while using in-batch negatives during training—reusing examples within a batch—and adding a few challenging negatives enhances accuracy efficiently.

In this section, we evaluate the retrieval performance of our Dense Passage Retriever (DPR), along with analysis on how its output differs from traditional retrieval methods, the effects of different training schemes and the run-time efficiency.

The DPR model used in our main experiments is trained using the in-batch negative setting Equation (2) with a batch size of $128$ and one additional BM25 negative passage per question. We trained the question and passage encoders for up to $40$ epochs for large datasets (NQ, TriviaQA, SQuAD) and $100$ epochs for small datasets (TREC, WQ), with a learning rate of $10^{-5}$ using Adam, linear scheduling with warm-up and dropout rate $0.1$.

While it is good to have the flexibility to adapt the retriever to each dataset, it would also be desirable to obtain a single retriever that works well across the board. To this end, we train a multi-dataset encoder by combining training data from all datasets excluding SQuAD.[^7] In addition to DPR, we also present the results of BM25, the traditional retrieval method[^8] and BM25+DPR, using a linear combination of their scores as the new ranking function. Specifically, we obtain two initial sets of top-2000 passages based on BM25 and DPR, respectively, and rerank the union of them using BM25($q$, $p$) + $\lambda \cdot \mathrm{sim}(q, p)$ as the ranking function. We used $\lambda=1.1$ based on the retrieval accuracy in the development set.

[^7]: SQuAD is limited to a small set of Wikipedia documents and thus introduces unwanted bias. We will discuss this issue more in Section 5.1.

[^8]: Lucene implementation. BM25 parameters $b=0.4$ (document length normalization) and $k_1=0.9$ (term frequency scaling) are tuned using development sets.

5.1 Main Results

Table 2 compares different passage retrieval systems on five QA datasets, using the top- $k$ accuracy ($k \in {20, 100}$). With the exception of SQuAD, DPR performs consistently better than BM25 on all datasets. The gap is especially large when $k$ is small (e.g., 78.4% vs. 59.1% for top-20 accuracy on Natural Questions). When training with multiple datasets, TREC, the smallest dataset of the five, benefits greatly from more training examples. In contrast, Natural Questions and WebQuestions improve modestly and TriviaQA degrades slightly. Results can be improved further in some cases by combining DPR with BM25 in both single- and multi-dataset settings.

We conjecture that the lower performance on SQuAD is due to two reasons. First, the annotators wrote questions after seeing the passage. As a result, there is a high lexical overlap between passages and questions, which gives BM25 a clear advantage. Second, the data was collected from only 500+ Wikipedia articles and thus the distribution of training examples is extremely biased, as argued previously by [9].

**Figure 1:** Retriever top- $k$ accuracy with different numbers of training examples used in our dense passage retriever vs BM25. The results are measured on the development set of Natural Questions. Our DPR trained using 1, 000 examples already outperforms BM25.

5.2 Ablation Study on Model Training

To understand further how different model training options affect the results, we conduct several additional experiments and discuss our findings below.

Sample efficiency

We explore how many training examples are needed to achieve good passage retrieval performance. Figure 1 illustrates the top- $k$ retrieval accuracy with respect to different numbers of training examples, measured on the development set of Natural Questions. As is shown, a dense passage retriever trained using only 1, 000 examples already outperforms BM25. This suggests that with a general pretrained language model, it is possible to train a high-quality dense retriever with a small number of question–passage pairs. Adding more training examples (from 1k to 59k) further improves the retrieval accuracy consistently.

In-batch negative training

We test different training schemes on the development set of Natural Questions and summarize the results in Table 3. The top block is the standard 1-of- $N$ training setting, where each question in the batch is paired with a positive passage and its own set of $n$ negative passages Equation (2). We find that the choice of negatives — random, BM25 or gold passages (positive passages from other questions) — does not impact the top- $k$ accuracy much in this setting when $k \ge 20$.

The middle bock is the in-batch negative training Equation (2) setting. We find that using a similar configuration (7 gold negative passages), in-batch negative training improves the results substantially. The key difference between the two is whether the gold negative passages come from the same batch or from the whole training set. Effectively, in-batch negative training is an easy and memory-efficient way to reuse the negative examples already in the batch rather than creating new ones. It produces more pairs and thus increases the number of training examples, which might contribute to the good model performance. As a result, accuracy consistently improves as the batch size grows.

Finally, we explore in-batch negative training with additional "hard" negative passages that have high BM25 scores given the question, but do not contain the answer string (the bottom block). These additional passages are used as negative passages for all questions in the same batch. We find that adding a single BM25 negative passage improves the result substantially while adding two does not help further.

::: {caption="Table 3: Comparison of different training schemes, measured as top- $k$ retrieval accuracy on Natural Questions (development set). #N: number of negative examples, IB: in-batch training. G.+BM25$^{(1)}$ and G.+BM25$^{(2)}$ denote in-batch training with 1 or 2 additional BM25 negatives, which serve as negative passages for all questions in the batch."}

:::

Impact of gold passages

We use passages that match the gold contexts in the original datasets (when available) as positive examples (Section 4.2). Our experiments on Natural Questions show that switching to distantly-supervised passages (using the highest-ranked BM25 passage that contains the answer), has only a small impact: 1 point lower top- $k$ accuracy for retrieval. Appendix A contains more details.

Similarity and loss

Besides dot product, cosine and Euclidean L2 distance are also commonly used as decomposable similarity functions. We test these alternatives and find that L2 performs comparable to dot product, and both of them are superior to cosine. Similarly, in addition to negative log-likelihood, a popular option for ranking is triplet loss, which compares a positive passage and a negative one directly with respect to a question [27]. Our experiments show that using triplet loss does not affect the results much. More details can be found in Appendix B.

Cross-dataset generalization

One interesting question regarding DPR's discriminative training is how much performance degradation it may suffer from a non-iid setting. In other words, can it still generalize well when directly applied to a different dataset without additional fine-tuning? To test the cross-dataset generalization, we train DPR on Natural Questions only and test it directly on the smaller WebQuestions and CuratedTREC datasets. We find that DPR generalizes well, with 3-5 points loss from the best performing fine-tuned model in top-20 retrieval accuracy (69.9/86.3 vs. 75.0/89.1 for WebQuestions and TREC, respectively), while still greatly outperforming the BM25 baseline (55.0/70.9).

5.3 Qualitative Analysis

Although DPR performs better than BM25 in general, passages retrieved by these two methods differ qualitatively. Term-matching methods like BM25 are sensitive to highly selective keywords and phrases, while DPR captures lexical variations or semantic relationships better. See Appendix C for examples and more discussion.

5.4 Run-time Efficiency

The main reason that we require a retrieval component for open-domain QA is to reduce the number of candidate passages that the reader needs to consider, which is crucial for answering user's questions in real-time. We profiled the passage retrieval speed on a server with Intel Xeon CPU E5-2698 v4 @ 2.20GHz and 512GB memory. With the help of FAISS in-memory index for real-valued vectors[^9], DPR can be made incredibly efficient, processing 995.0 questions per second, returning top 100 passages per question. In contrast, BM25/Lucene (implemented in Java, using file index) processes 23.7 questions per second per CPU thread.

[^9]: FAISS configuration: we used HNSW index type on CPU, neighbors to store per node = 512, construction time search depth = 200, search depth = 128.

On the other hand, the time required for building an index for dense vectors is much longer. Computing dense embeddings on 21-million passages is resource intensive, but can be easily parallelized, taking roughly 8.8 hours on 8 GPUs. However, building the FAISS index on 21-million vectors on a single server takes 8.5 hours. In comparison, building an inverted index using Lucene is much cheaper and takes only about 30 minutes in total.

::: {caption="Table 4: End-to-end QA (Exact Match) Accuracy. The first block of results are copied from their cited papers. REALM $\textrm{Wiki}$ and REALM $\textrm{News}$ are the same model but pretrained on Wikipedia and CC-News, respectively. Single and Multi denote that our Dense Passage Retriever (DPR) is trained using individual or combined training datasets (all except SQuAD). For WQ and TREC in the Multi setting, we fine-tune the reader trained on NQ."}

:::

6. Experiments: Question Answering

Section Summary: Researchers tested how various passage-retrieval methods influence the accuracy of answering questions by building a complete question-answering system that combines a retriever with a neural network reader, which evaluates and selects the best answer from the top-retrieved passages, usually up to 100, using a model based on BERT. In their training process, they used positive and negative passage examples to fine-tune the system, often drawing from multiple datasets for better performance on smaller ones. The results showed that their Dense Passage Retrieval (DPR) method generally outperformed traditional BM25 retrieval and surpassed prior state-of-the-art systems on four out of five datasets, achieving this with a simpler, more efficient approach than competitors that required extensive pretraining.

In this section, we experiment with how different passage retrievers affect the final QA accuracy.

6.1 End-to-end QA System

We implement an end-to-end question answering system in which we can plug different retriever systems directly. Besides the retriever, our QA system consists of a neural reader that outputs the answer to the question. Given the top $k$ retrieved passages (up to $100$ in our experiments), the reader assigns a passage selection score to each passage. In addition, it extracts an answer span from each passage and assigns a span score. The best span from the passage with the highest passage selection score is chosen as the final answer. The passage selection model serves as a reranker through cross-attention between the question and the passage. Although cross-attention is not feasible for retrieving relevant passages in a large corpus due to its non-decomposable nature, it has more capacity than the dual-encoder model $\mathrm{sim}(q, p)$ as in Equation 1. Applying it to selecting the passage from a small number of retrieved candidates has been shown to work well [13, 32, 33].

Specifically, let $\mathbf{P}_{i} \in \mathbb{R}^{L \times h}$ ($1 \leq i \leq k$) be a BERT (base, uncased in our experiments) representation for the $i$-th passage, where $L$ is the maximum length of the passage and $h$ the hidden dimension. The probabilities of a token being the starting/ending positions of an answer span and a passage being selected are defined as:

$ \begin{align} P_{\textrm{start}, i}(s) &=& \mathrm{softmax} \big(\mathbf{P}{i} \mathbf{w}\textrm{start}\big)s, \ P{\textrm{end}, i}(t) &=& \mathrm{softmax} \big(\mathbf{P}{i} \mathbf{w}\textrm{end}\big)t, \ P\textrm{selected}(i) &=& \mathrm{softmax} \big(\mathbf{\hat{P}}^{\intercal} \mathbf{w}_\mathrm{selected} \big)_i, \end{align} $

where $\mathbf{\hat{P}} = [\mathbf{P}1^{\mathrm{[CLS]}}, \ldots, \mathbf{P}k^{\mathrm{[CLS]}}] \in \mathbb{R}^{h \times k}$ and $\mathbf{w}\textrm{start}, \mathbf{w}\textrm{end}, \mathbf{w}\mathrm{selected} \in \mathbb{R}^{h}$ are learnable vectors. We compute a span score of the $s$-th to $t$-th words from the $i$-th passage as $P{\textrm{start}, i}(s) \times P_{\textrm{end}, i}(t)$, and a passage selection score of the $i$-th passage as $P_\textrm{selected}(i)$.

During training, we sample one positive and $\tilde{m}-1$ negative passages from the top 100 passages returned by the retrieval system (BM25 or DPR) for each question. $\tilde{m}$ is a hyper-parameter and we use $\tilde{m}=24$ in all the experiments. The training objective is to maximize the marginal log-likelihood of all the correct answer spans in the positive passage (the answer string may appear multiple times in one passage), combined with the log-likelihood of the positive passage being selected. We use the batch size of 16 for large (NQ, TriviaQA, SQuAD) and 4 for small (TREC, WQ) datasets, and tune $k$ on the development set. For experiments on small datasets under the Multi setting, in which using other datasets is allowed, we fine-tune the reader trained on Natural Questions to the target dataset. All experiments were done on eight 32GB GPUs.

6.2 Results

Table 4 summarizes our final end-to-end QA results, measured by exact match with the reference answer after minor normalization as in [4, 9]. From the table, we can see that higher retriever accuracy typically leads to better final QA results: in all cases except SQuAD, answers extracted from the passages retrieved by DPR are more likely to be correct, compared to those from BM25. For large datasets like NQ and TriviaQA, models trained using multiple datasets (Multi) perform comparably to those trained using the individual training set (Single). Conversely, on smaller datasets like WQ and TREC, the multi-dataset setting has a clear advantage. Overall, our DPR-based models outperform the previous state-of-the-art results on four out of the five datasets, with 1% to 12% absolute differences in exact match accuracy. It is interesting to contrast our results to those of ORQA [9] and also the concurrently developed approach, REALM [31]. While both methods include additional pretraining tasks and employ an expensive end-to-end training regime, DPR manages to outperform them on both NQ and TriviaQA, simply by focusing on learning a strong passage retrieval model using pairs of questions and answers. The additional pretraining tasks are likely more useful only when the target training sets are small. Although the results of DPR on WQ and TREC in the single-dataset setting are less competitive, adding more question–answer pairs helps boost the performance, achieving the new state of the art.

To compare our pipeline training approach with joint learning, we run an ablation on Natural Questions where the retriever and reader are jointly trained, following [9]. This approach obtains a score of 39.8 EM, which suggests that our strategy of training a strong retriever and reader in isolation can leverage effectively available supervision, while outperforming a comparable joint training approach with a simpler design (Appendix D).

One thing worth noticing is that our reader does consider more passages compared to ORQA, although it is not completely clear how much more time it takes for inference. While DPR processes up to 100 passages for each question, the reader is able to fit all of them into one batch on a single 32GB GPU, thus the latency remains almost identical to the single passage case (around 20ms). The exact impact on throughput is harder to measure: ORQA uses 2-3x longer passages compared to DPR (288 word pieces compared to our 100 tokens) and the computational complexity is super-linear in passage length. We also note that we found $k=50$ to be optimal for NQ, and $k=10$ leads to only marginal loss in exact match accuracy (40.8 vs. 41.5 EM on NQ), which should be roughly comparable to ORQA's 5-passage setup.

7. Related Work

Section Summary: Passage retrieval plays a key role in open-domain question answering by narrowing down potential answers and providing context for verification, with traditional methods like TF-IDF and BM25 serving as reliable standards, often enhanced by structured data such as knowledge graphs. Dense vector approaches, which capture semantic similarities without needing exact word matches, have gained popularity through trained encoders and are used in tasks like search and re-ranking, though they typically work best alongside sparse methods; early explorations in QA include iterative retrieval, direct answer encoding, and pretraining techniques that improve accuracy over basic setups. Recent advancements build on models like DPR by incorporating hard negatives for better training or combining it with generative tools like BART and T5 to handle knowledge-intensive tasks more effectively.

Passage retrieval has been an important component for open-domain QA [1]. It not only effectively reduces the search space for answer extraction, but also identifies the support context for users to verify the answer. Strong sparse vector space models like TF-IDF or BM25 have been used as the standard method applied broadly to various QA tasks (e.g., [4, 5, 34, 35, 28, 36]). Augmenting text-based retrieval with external structured information, such as knowledge graph and Wikipedia hyperlinks, has also been explored recently [29, 30].

The use of dense vector representations for retrieval has a long history since Latent Semantic Analysis [37]. Using labeled pairs of queries and documents, discriminatively trained dense encoders have become popular recently [20, 38, 22], with applications to cross-lingual document retrieval, ad relevance prediction, Web search and entity retrieval. Such approaches complement the sparse vector methods as they can potentially give high similarity scores to semantically relevant text pairs, even without exact token matching. The dense representation alone, however, is typically inferior to the sparse one. While not the focus of this work, dense representations from pretrained models, along with cross-attention mechanisms, have also been shown effective in passage or dialogue re-ranking tasks [39, 40]. Finally, a concurrent work [41] demonstrates the feasibility of full dense retrieval in IR tasks. Instead of employing the dual-encoder framework, they introduced a late-interaction operator on top of the BERT encoders.

Dense retrieval for open-domain QA has been explored by [42], who propose to retrieve relevant passages iteratively using reformulated question vectors. As an alternative approach that skips passage retrieval, [14] propose to encode candidate answer phrases as vectors and directly retrieve the answers to the input questions efficiently. Using additional pretraining with the objective that matches surrogates of questions and relevant passages, [9] jointly train the question encoder and reader. Their approach outperforms the BM25 plus reader paradigm on multiple open-domain QA datasets in QA accuracy, and is further extended by REALM [31], which includes tuning the passage encoder asynchronously by re-indexing the passages during training. The pretraining objective has also recently been improved by [43]. In contrast, our model provides a simple and yet effective solution that shows stronger empirical performance, without relying on additional pretraining or complex joint training schemes.

DPR has also been used as an important module in very recent work. For instance, extending the idea of leveraging hard negatives, [44] use the retrieval model trained in the previous iteration to discover new negatives and construct a different set of examples in each training iteration. Starting from our trained DPR model, they show that the retrieval performance can be further improved. Recent work [45, 46] have also shown that DPR can be combined with generation models such as BART [47] and T5 [48], achieving good performance on open-domain QA and other knowledge-intensive tasks.

8. Conclusion

Section Summary: This study shows that dense retrieval methods can outperform and even replace older sparse retrieval techniques for answering questions from large knowledge bases. A straightforward dual-encoder model works effectively if trained with key techniques, and adding more complex setups or functions doesn't provide extra benefits. As a result, these improvements led to the best performance yet on several standard benchmarks for open-domain question answering.

In this work, we demonstrated that dense retrieval can outperform and potentially replace the traditional sparse retrieval component in open-domain question answering. While a simple dual-encoder approach can be made to work surprisingly well, we showed that there are some critical ingredients to training a dense retriever successfully. Moreover, our empirical analysis and ablation studies indicate that more complex model frameworks or similarity functions do not necessarily provide additional values. As a result of improved retrieval performance, we obtained new state-of-the-art results on multiple open-domain question answering benchmarks.

Acknowledgments

We thank the anonymous reviewers for their helpful comments and suggestions.

Appendix

Section Summary: The appendix explores variations in training the Dense Passage Retriever (DPR) model, such as using distant supervision where positive passages are selected based on containing answers rather than exact matches, which shows only minor performance drops compared to standard methods. It also tests alternative similarity measures like Euclidean distance and triplet loss, finding them comparable to the baseline without major gains, and includes qualitative examples highlighting how DPR better handles semantic matches while sometimes missing key rare phrases that keyword-based tools like BM25 catch. Finally, joint training of the retriever and reader components, with a fixed passage encoder for efficiency, yields no improvement over separate training, achieving the same question-answering accuracy.

A. Distant Supervision

When training our final DPR model using Natural Questions, we use the passages in our collection that best match the gold context as the positive passages. As some QA datasets contain only the question and answer pairs, it is thus interesting to see when using the passages that contain the answers as positives (i.e., the distant supervision setting), whether there is a significant performance degradation. Using the question and answer together as the query, we run Lucene-BM25 and pick the top passage that contains the answer as the positive passage. Table 5 shows the performance of DPR when trained using the original setting and the distant supervision setting.

B. Alternative Similarity Functions & Triplet Loss

In addition to dot product (DP) and negative log-likelihood based on softmax (NLL), we also experiment with Euclidean distance (L2) and the triplet loss. We negate L2 similarity scores before applying softmax and change signs of question-to-positive and question-to-negative similarities when applying the triplet loss on dot product scores. The margin value of the triplet loss is set to 1. Table 6 summarizes the results. All these additional experiments are conducted using the same hyper-parameters tuned for the baseline (DP, NLL).

Note that the retrieval accuracy for our "baseline" settings reported in Table 5 (Gold) and Table 6 (DP, NLL) is slightly better than those reported in Table 3. This is due to a better hyper-parameter setting used in these analysis experiments, which is documented in our code release.

C. Qualitative Analysis

Although DPR performs better than BM25 in general, the retrieved passages of these two retrievers actually differ qualitatively. Methods like BM25 are sensitive to highly selective keywords and phrases, but cannot capture lexical variations or semantic relationships well. In contrast, DPR excels at semantic representation, but might lack sufficient capacity to represent salient phrases which appear rarely. Table 7 illustrates this phenomenon with two examples. In the first example, the top scoring passage from BM25 is irrelevant, even though keywords such as England and Ireland appear multiple times. In comparison, DPR is able to return the correct answer, presumably by matching "body of water" with semantic neighbors such as sea and channel, even though no lexical overlap exists. The second example is one where BM25 does better. The salient phrase "Thoros of Myr" is critical, and DPR is unable to capture it.

: Table 5: Retrieval accuracy on the development set of Natural Questions, trained on passages that match the gold context (Gold) or the top BM25 passage that contains the answer (Dist. Sup.).

Top-1 Top-5 Top-20 Top-100
Gold 44.9 66.8 78.1 85.0
Dist. Sup. 43.9 65.3 77.1 84.4

::: {caption="Table 6: Retrieval Top- $k$ accuracy on the development set of Natural Questions using different similarity and loss functions."}

:::

::: {caption="Table 7: Examples of passages returned from BM25 and DPR. Correct answers are written in blue and the content words in the question are written in bold."}

:::

D. Joint Training of Retriever and Reader

We fix the passage encoder in our joint-training scheme while allowing only the question encoder to receive backpropagation signal from the combined (retriever + reader) loss function. This allows us to leverage the HNSW-based FAISS index for efficient low-latency retrieving, without reindexing the passages during model updates. Our loss function largely follows ORQA's approach, which uses log probabilities of positive passages selected from the retriever model, and correct spans and passages selected from the reader model. Since the passage encoder is fixed, we could use larger amount of retrieved passages when calculating the retriever loss. Specifically, we get top 100 passages for each question in a mini-batch and use the method similar to in-batch negative training: all retrieved passages' vectors participate in the loss calculation for all questions in a batch. Our training batch size is set to 16, which effectively gives 1, 600 passages per question to calculate retriever loss. The reader still uses 24 passages per question, which are selected from the top 5 positive and top 30 negative passages (from the set of top 100 passages retrieved from the same question). The question encoder's initial state is taken from a DPR model previously trained on the NQ dataset. The reader's initial state is a BERT-base model. In terms of the end-to-end QA results, our joint-training scheme does not provide better results compared to the usual retriever/reader training pipeline, resulting in the same 39.8 exact match score on NQ dev as in our regular reader model training.

References

[1] Ellen M Voorhees. 1999. The TREC-8 question answering track report. In TREC, volume 99, pages 77–82.

[2] David A Ferrucci. 2012. Introduction to "This is Watson". IBM Journal of Research and Development, 56(3.4):1–1.

[3] Dan Moldovan, Marius Paşca, Sanda Harabagiu, and Mihai Surdeanu. 2003. Performance issues and error analysis in an open-domain question answering system. ACM Transactions on Information Systems (TOIS), 21(2):133–154.

[4] Danqi Chen, Adam Fisch, Jason Weston, and Antoine Bordes. 2017. Reading Wikipedia to answer open-domain questions. In Association for Computational Linguistics (ACL), pages 1870–1879.

[5] Wei Yang, Yuqing Xie, Aileen Lin, Xingyu Li, Luchen Tan, Kun Xiong, Ming Li, and Jimmy Lin. 2019a. End-to-end open-domain question answering with bertserini. In North American Association for Computational Linguistics (NAACL), pages 72–77.

[6] Stephen Robertson and Hugo Zaragoza. 2009. The probabilistic relevance framework: BM25 and beyond. Foundations and Trends in Information Retrieval, 3(4):333–389.

[7] Anshumali Shrivastava and Ping Li. 2014. Asymmetric LSH (ALSH) for sublinear time maximum inner product search (MIPS). In Advances in Neural Information Processing Systems (NIPS), pages 2321–2329.

[8] Ruiqi Guo, Sanjiv Kumar, Krzysztof Choromanski, and David Simcha. 2016. Quantization based fast inner product search. In Artificial Intelligence and Statistics, pages 482–490.

[9] Kenton Lee, Ming-Wei Chang, and Kristina Toutanova. 2019. Latent retrieval for weakly supervised open domain question answering. In Association for Computational Linguistics (ACL), pages 6086–6096.

[10] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. 2019. BERT: Pre-training of deep bidirectional transformers for language understanding. In North American Association for Computational Linguistics (NAACL).

[11] Jane Bromley, Isabelle Guyon, Yann LeCun, Eduard Säckinger, and Roopak Shah. 1994. Signature verification using a "Siamese" time delay neural network. In NIPS, pages 737–744.

[12] Tom Kwiatkowski, Jennimaria Palomaki, Olivia Redfield, Michael Collins, Ankur Parikh, Chris Alberti, Danielle Epstein, Illia Polosukhin, Matthew Kelcey, Jacob Devlin, Kenton Lee, Kristina N. Toutanova, Llion Jones, Ming-Wei Chang, Andrew Dai, Jakob Uszkoreit, Quoc Le, and Slav Petrov. 2019. Natural questions: a benchmark for question answering research. Transactions of the Association of Computational Linguistics (TACL).

[13] Zhiguo Wang, Patrick Ng, Xiaofei Ma, Ramesh Nallapati, and Bing Xiang. 2019. Multi-passage BERT: A globally normalized bert model for open-domain question answering. In Empirical Methods in Natural Language Processing (EMNLP).

[14] Minjoon Seo, Jinhyuk Lee, Tom Kwiatkowski, Ankur Parikh, Ali Farhadi, and Hannaneh Hajishirzi. 2019. Real-time open-domain question answering with dense-sparse phrase index. In Association for Computational Linguistics (ACL).

[15] Adam Roberts, Colin Raffel, and Noam Shazeer. 2020. How much knowledge can you pack into the parameters of a language model? ArXiv, abs/2002.08910.

[16] Stephen Mussmann and Stefano Ermon. 2016. Learning and inference via maximum inner product search. In International Conference on Machine Learning (ICML), pages 2587–2596.

[17] Parikshit Ram and Alexander G Gray. 2012. Maximum inner-product search using cone trees. In Proceedings of the 18th ACM SIGKDD international conference on Knowledge discovery and data mining, pages 931–939.

[18] Jeff Johnson, Matthijs Douze, and Hervé Jégou. 2017. Billion-scale similarity search with GPUs. ArXiv, abs/1702.08734.

[19] Brian Kulis. 2013. Metric learning: A survey. Foundations and Trends in Machine Learning, 5(4):287–364.

[20] Wen-tau Yih, Kristina Toutanova, John C Platt, and Christopher Meek. 2011. Learning discriminative projections for text similarity measures. In Computational Natural Language Learning (CoNLL), pages 247–256.

[21] Matthew Henderson, Rami Al-Rfou, Brian Strope, Yun-hsuan Sung, László Lukács, Ruiqi Guo, Sanjiv Kumar, Balint Miklos, and Ray Kurzweil. 2017. Efficient natural language response suggestion for smart reply. ArXiv, abs/1705.00652.

[22] Daniel Gillick, Sayali Kulkarni, Larry Lansing, Alessandro Presta, Jason Baldridge, Eugene Ie, and Diego Garcia-Olano. 2019. Learning dense representations for entity retrieval. In Computational Natural Language Learning (CoNLL).

[23] Mandar Joshi, Eunsol Choi, Daniel Weld, and Luke Zettlemoyer. 2017. TriviaQA: A large scale distantly supervised challenge dataset for reading comprehension. In Association for Computational Linguistics (ACL), pages 1601–1611.

[24] Jonathan Berant, Andrew Chou, Roy Frostig, and Percy Liang. 2013. Semantic parsing on Freebase from question-answer pairs. In Empirical Methods in Natural Language Processing (EMNLP).

[25] Petr Baudiš and Jan Šedivỳ. 2015. Modeling of the question answering task in the yodaqa system. In International Conference of the Cross-Language Evaluation Forum for European Languages, pages 222–228. Springer.

[26] Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. 2016. SQuAD: 100,000+ questions for machine comprehension of text. In Empirical Methods in Natural Language Processing (EMNLP), pages 2383–2392.

[27] Chris Burges, Tal Shaked, Erin Renshaw, Ari Lazier, Matt Deeds, Nicole Hamilton, and Greg Hullender. 2005. Learning to rank using gradient descent. In Proceedings of the 22nd international conference on Machine learning, pages 89–96.

[28] Sewon Min, Danqi Chen, Hannaneh Hajishirzi, and Luke Zettlemoyer. 2019a. A discrete hard EM approach for weakly supervised question answering. In Empirical Methods in Natural Language Processing (EMNLP).

[29] Sewon Min, Danqi Chen, Luke Zettlemoyer, and Hannaneh Hajishirzi. 2019b. Knowledge guided text retrieval and reading for open domain question answering. ArXiv, abs/1911.03868.

[30] Akari Asai, Kazuma Hashimoto, Hannaneh Hajishirzi, Richard Socher, and Caiming Xiong. 2020. Learning to retrieve reasoning paths over Wikipedia graph for question answering. In International Conference on Learning Representations (ICLR).

[31] Kelvin Guu, Kenton Lee, Zora Tung, Panupong Pasupat, and Ming-Wei Chang. 2020. REALM: Retrieval-augmented language model pre-training. ArXiv, abs/2002.08909.

[32] Shuohang Wang, Mo Yu, Xiaoxiao Guo, Zhiguo Wang, Tim Klinger, Wei Zhang, Shiyu Chang, Gerry Tesauro, Bowen Zhou, and Jing Jiang. 2018. R^3: Reinforced ranker-reader for open-domain question answering. In Conference on Artificial Intelligence (AAAI).

[33] Yankai Lin, Haozhe Ji, Zhiyuan Liu, and Maosong Sun. 2018. Denoising distantly supervised open-domain question answering. In Association for Computational Linguistics (ACL), pages 1736–1745.

[34] Wei Yang, Yuqing Xie, Luchen Tan, Kun Xiong, Ming Li, and Jimmy Lin. 2019b. Data augmentation for bert fine-tuning in open-domain question answering. ArXiv, abs/1904.06652.

[35] Yixin Nie, Songhe Wang, and Mohit Bansal. 2019. Revealing the importance of semantic retrieval for machine reading at scale. In Empirical Methods in Natural Language Processing (EMNLP).

[36] Tomer Wolfson, Mor Geva, Ankit Gupta, Matt Gardner, Yoav Goldberg, Daniel Deutch, and Jonathan Berant. 2020. Break it down: A question understanding benchmark. Transactions of the Association of Computational Linguistics (TACL).

[37] Scott Deerwester, Susan T Dumais, George W Furnas, Thomas K Landauer, and Richard Harshman. 1990. Indexing by latent semantic analysis. Journal of the American society for information science, 41(6):391–407.

[38] Po-Sen Huang, Xiaodong He, Jianfeng Gao, Li Deng, Alex Acero, and Larry Heck. 2013. Learning deep structured semantic models for Web search using clickthrough data. In ACM International Conference on Information and Knowledge Management (CIKM), pages 2333–2338.

[39] Rodrigo Nogueira and Kyunghyun Cho. 2019. Passage re-ranking with BERT. ArXiv, abs/1901.04085.

[40] Samuel Humeau, Kurt Shuster, Marie-Anne Lachaux, and Jason Weston. 2020. Poly-encoders: Architectures and pre-training strategies for fast and accurate multi-sentence scoring. In International Conference on Learning Representations (ICLR).

[41] Omar Khattab and Matei Zaharia. 2020. ColBERT: Efficient and effective passage search via contextualized late interaction over BERT. In ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR), pages 39–48.

[42] Rajarshi Das, Shehzaad Dhuliawala, Manzil Zaheer, and Andrew McCallum. 2019. Multi-step retriever-reader interaction for scalable open-domain question answering. In International Conference on Learning Representations (ICLR).

[43] Wenhan Xiong, Hankang Wang, and William Yang Wang. 2020b. Progressively pretrained dense corpus index for open-domain question answering. ArXiv, abs/2005.00038.

[44] Lee Xiong, Chenyan Xiong, Ye Li, Kwok-Fung Tang, Jialin Liu, Paul Bennett, Junaid Ahmed, and Arnold Overwijk. 2020a. Approximate nearest neighbor negative contrastive learning for dense text retrieval. ArXiv, abs/2007.00808.

[45] Gautier Izacard and Edouard Grave. 2020. Leveraging passage retrieval with generative models for open domain question answering. ArXiv, abs/2007.01282.

[46] Patrick Lewis, Ethan Perez, Aleksandara Piktus, Fabio Petroni, Vladimir Karpukhin, Naman Goyal, Heinrich Küttler, Mike Lewis, Wen-tau Yih, Tim Rocktäschel, Sebastian Riedel, and Douwe Kiela. 2020b. Retrieval-augmented generation for knowledge-intensive NLP tasks. In Advances in Neural Information Processing Systems (NeurIPS).

[47] Mike Lewis, Yinhan Liu, Naman Goyal, Marjan Ghazvininejad, Abdelrahman Mohamed, Omer Levy, Veselin Stoyanov, and Luke Zettlemoyer. 2020a. BART: Denoising sequence-to-sequence pre-training for natural language generation, translation, and comprehension. In Association for Computational Linguistics (ACL), pages 7871–7880.

[48] Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J Liu. 2019. Exploring the limits of transfer learning with a unified text-to-text transformer. ArXiv, abs/1910.10683.