<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Enhancing Fusion-in-Decoder for Multi-Granularity Ranking</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Haeju Park</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Kyungjae Lee</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sunghyun Park</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Moontae Lee</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>LG AI Research</institution>
          ,
          <country>Republic of Korea</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Large Language Models (LLMs) have demonstrated exceptional performance across various natural language tasks, leveraging extensive knowledge from massive datasets. However, their reliance solely on parametric knowledge often leads to the generation of inaccurate or outdated content, particularly in domain-specific tasks. Retrieval Augmented Generation (RAG) has emerged as a promising approach to address this limitation by incorporating external knowledge without necessitating re-training. While RAG enhances the accuracy of LLM-generated content, efectively retrieving external knowledge remains a challenge due to potential noise and computational costs. To address this, traditional information retrieval systems adopt two-stage approaches, utilizing eficient retrievers followed by reranking mechanisms. Recently, transformer-based architectures, including BERT and T5 models, have shown promise as efective rerankers. However, such models have limited context size and only perform single-granularity ranking at a time, hindering their efectiveness and eficiency. In this paper, we first explore the existing rerankers such as RankT5 and RFiD, highlighting challenges in multi-granularity ranking. Subsequently, we introduce PFiD (Passage Fusion-in-Decoder), a simple yet eficient approach aimed at efectively ranking both document and passage simultaneously. Through empirical evaluation, we demonstrate the eficacy of PFiD in improving efectiveness and eficiency, ofering a promising direction for further research in this domain.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Information Systems</kwd>
        <kwd>Retrieval Augmented Generation</kwd>
        <kwd>Large Language Model</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Despite their remarkable capabilities and growth, Large
Language Models (LLMs) [
        <xref ref-type="bibr" rid="ref1 ref2 ref3 ref4">1, 2, 3, 4</xref>
        ] still tend to generate
factually incorrect or outdated content as their knowledge solely
relies on their parametric knowledge, especially in
domainspecific or knowledge-intensive tasks [
        <xref ref-type="bibr" rid="ref5 ref6 ref7">5, 6, 7</xref>
        ]. Retrieval
Augmented Generation (RAG) approaches [
        <xref ref-type="bibr" rid="ref10 ref11 ref8 ref9">8, 9, 10, 11</xref>
        ] have
gained significant attention, which improve the quality of
LLM-generated output by grounding on external knowledge
to supplement the LLMs’ parametric knowledge, without
having to re-train the LLMs. RAG leverages a powerful
information retrieval model, which is designed to search
large datasets or knowledge bases. The retrieved
information is then incorporated into LLMs, enabling it to generate
more accurate and contextually relevant content. By
incorporating external knowledge, RAG can efectively reduce
the problem of generating factually incorrect or outdated
content in LLMs [
        <xref ref-type="bibr" rid="ref12 ref13">12, 13</xref>
        ].
      </p>
      <p>
        However, current RAG frameworks have major
challenges when it comes to the efectiveness and eficiency of
information retrieval systems: First, LLMs tend to generate
inaccurate responses on distracting (or noisy) contexts, thus
the performance of retrieval models has a significant
impact on the quality of RAG’s responses [
        <xref ref-type="bibr" rid="ref11 ref14 ref15">14, 15, 11</xref>
        ]. Second,
the retrieval component of RAG requires searching through
large-scale knowledge bases or the web, which can be
computationally expensive and slow [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]. Due to the above
challenges, existing retrieval systems adopt two-stage
approaches, an eficient first-stage retriever such as BM25 [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]
and DPR [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] retrieves a set of documents from a larger
dataset, and then a second-stage reranker is used to rerank
retrieved documents for precise ranking. Recently, with the
advent of transformer-based models such as BERT [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] and
T5 [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ], more architectures including bi-encoder [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ],
crossencoder [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ], encoder-decoder [
        <xref ref-type="bibr" rid="ref21 ref22">21, 22</xref>
        ], and decoder-only
models [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ], have gradually shown their efectiveness as
a reranker. However, these models have limited context
size and only perform single-granularity ranking during
inference, which hinders their efectiveness and eficiency
in real-world RAG scenarios.
      </p>
      <p>
        To this end, in this paper, we focus on the
multigranularity ranking task, which ranks both document and
passage simultaneously. Specifically, we first investigate the
single-passage cross-encoder models such as MonoT5 [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ]
and RankT5 [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]. It achieves superior performance across
various ranking tasks, but due to the constraint of input
tokens, its eficiency is limited in real-world RAG scenarios.
Next, we present the use of multi-passage cross-encoder,
such as FiD [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] and RFiD [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ]. These models alleviate the
input tokens limit by leveraging multi-passage, but they
directly use the cross-attention score of the decoder as a
passage relevance, which is implicitly learned, and encounter
dificulty with distinguishing relative diferences between
passages. Thereafter, we propose a simple and efective PFiD
(Passage Fusion-in-Decoder) for multi-granularity ranking.
PFiD extends the FiD model by generating a document-level
relevance token, enabling both document retrieval and
passage ranking. Furthermore, PFiD adopts the inter-passage
attention mechanism to learn relative passage relevance
explicitly, using the special tokens at the beginning of the
input text to represent the entire context.
      </p>
      <p>
        Experiments on MIRACL passage ranking dataset [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ]
demonstrate that PFiD improves efectiveness and eficiency
compared to existing approaches, especially in RAG
scenarios.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Preliminaries</title>
      <sec id="sec-2-1">
        <title>2.1. Task definition</title>
        <p>Given a user query  and a document (or passage) corpus
 = {1, 2, ..., }, the goal of document retrieval is to
ifnd the  documents that are most relevant to the query .
In our multi-granularity ranking setting, which consists of
document retrieval and passage ranking tasks, the document
retrieval task is to perform reranking on BM25 retrieved
top- documents. While traditional passage ranking tasks
typically involve ranking entire passages, in this paper, the
passage ranking task focuses solely on ranking passages
within the retrieved document itself, which aligns more
closely with real-world RAG scenarios and is thus more
feasible.</p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. Ranking models</title>
        <p>
          Pre-trained Language Models (PLMs) are currently the most
efective ranking models, which can be categorized into:
biencoders and cross-encoders. Bi-encoders encode a query
and a passage separately to obtain semantic
representations [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ], emerging as powerful first-stage retrievers by
pre-computing the passage representations ofline. Instead,
cross-encoders take the concatenation of the query and
a passage, and perform query-passage interactions [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ],
which have been conceived as second-stage rerankers,
designed to explicitly refine the results provided by the
firststage retrieval. In this paper, for brevity, we also refer other
PLMs, such as encoder-only [
          <xref ref-type="bibr" rid="ref17 ref20">17, 20</xref>
          ], decoder-only [
          <xref ref-type="bibr" rid="ref23">23</xref>
          ],
and encoder-decoder [
          <xref ref-type="bibr" rid="ref21 ref22">21, 22</xref>
          ] models that perform
querypassage interactions simultaneously, as cross-encoders.
        </p>
        <p>
          There are several PLM-based cross-encoders,
including sequence-to-sequence language models such as
MonoT5 [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ] and RankT5 [
          <xref ref-type="bibr" rid="ref21">21</xref>
          ] for ranking task, as well
as multi-passage reader models like FiD [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] and RFiD [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ]
for RAG tasks, which have been demonstrated superior
effectiveness.
        </p>
        <p>
          MonoT5. MonoT5 [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ] is the first work to define a ranking
task as a text generation task by leveraging T5 [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ]
encoderdecoder model. A query-document pair is concatenated into
an input sequence Query :  Document :  Relevant:,
and utilizes true and false as target tokens to represent
their relevance. Then, the model is fine-tuned for text
generation task. After training, the ranking scores are derived
from the logits of true token, based on the softmax applied
only on the logits of the true and false tokens.
RankT5. Following MonoT5 [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ], the input sequence is
similar except that RankT5 do not include the Relevant:
postfix. Then, the model use the &lt;extra_id_10&gt; as target
token to learn unnormalized ranking score. The model is
trained with list-wise ranking loss directly, instead of using
text generation loss as in MonoT5 [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ]. However, these
models cannot be directly used for long document retrieval
due to the maximum input length constraint as in most
PLMs, which hinders their efectiveness in the document
retrieval task.
        </p>
        <p>
          FiD. The FiD model further extends T5 [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ] encoder-decoder
model, taking multiple  passages as input, encoding
separately, and then feeds the concatenated  encoder hidden
states into a T5 decoder to generate the answer. Relevance
scores for passages are computed using cross-attention
scores, which entail averaging the attention score across all
tokens within the passage and all layers and heads within
the decoder [
          <xref ref-type="bibr" rid="ref26">26</xref>
          ].
        </p>
        <p>
          RFiD. While FiD [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] treats all passages equally within its
encoders, solely depending on the cross-attention mechanism
to establish correlations between the decoder and encoders,
which may identify the incorrect answer by referring to
spurious passages. Instead, RFiD [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ] improves FiD by
identifying potential answer-containing passages (or rationale)
among the candidates and guiding the decoder with the
identified rationales. Afterward, cross-attention scores are
directly regarded as passage relevance scores the same as
in [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ]. However, even with the rationale, the cross-attention
mechanism still lacks for distinguishing relative diferences
between passages, as it is implicitly guided by a rationale
classifier solely trained on point-wise binary classification
loss.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Method</title>
      <p>
        In this section, we briefly discuss a simple but efective
Passage Fusion-in-Decoder (PFiD) for multi-granularity
ranking. PFiD adopts the FiD [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] architecture as a base model,
further extends FiD by utilizing true and false token
as a target token to model document-level relevance,
enabling multi-granularity ranking simultaneously.
Additionally, PFiD integrates inter-passage attention to learn relative
passage relevances explicitly, which is similar to the
listwise training objective of RankT5 [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ].
      </p>
      <p>Fusion-in-Decoder for Document Retrieval. Formally,
Given a question  and a set of  passages within the
document  = {1, 2, ..., }, the FiD encoder outputs
the -th passage embeddings Hk ∈ R× , where  denotes
the maximum token length, and  denotes the dimension of
hidden states, which are then concatenated as the input of
the fusion decoder [H1, H2, ..., Hk].</p>
      <p>Hk = FiD-Encoder( + )
(1)</p>
      <p>
        The FiD decoder utilizes [H1, H2, ..., Hk] to generate the
target token  = true  false. Therefore, the loss
function can be defined as follows:
ℒ  = −

∑︁ log (|1, 2, ...., − 1, [H1, H2, ..., Hk])
=1
(2)
Inter-passage Attention. Previous work [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ] tackled the
issue of spurious passages by employing a binary classifier
on the first token’s encoder hidden states Hk,1, to determine
whether the passage is a rationale passage to the query.
Then, guide the decoder by appending the additional
embeddings toward the end of the encoder’s hidden states
[H1, H2, ..., Hk, Hk+1], where Hk+1 ∈ R2×  is trainable
rationale embedding. However, as Table 2 shows, it drastically
underperforms in passage ranking tasks by a large margin,
as it does not explicitly model relative passage relevance.
      </p>
      <p>
        Instead, to mitigate this, we utilize inter-passage
attention to model interactions between passages explicitly. PFiD
builds a set of input sequences by appending the first
token hidden states of each pair as B = [H1,1, H2,1, ..., Hk,1],
where H, denotes the -th token embeddings of -th
passage. In a standard cross-encoder, the first token of the
encoder aggregate query-passage information to compute
a relevance score. We further use this token to depict the
relative semantics via self-attention mechanism. Inspried
by [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ], we consider single-layer transformer model to
depict relative passage relevance as follows:
B̃︀ = softmax
︂( QK⊺ )︂
√
(3)
in which matrices WQ, WK, WV ∈ R×  are learnable
parameters. The information from diferent passages is fused
V, where Q = BWQ, K = BWK, V = BWV
and exchanged via the self-attention mechanism. The
training loss used for inter-passage attention can be defined as
follows:
      </p>
      <p>= softmax(B̃︀W ) ∈ R2,
ℒ = − ( log() + (1 − ) log(1 − ))
where  is the passage relevance label, and the overall
training objective of PFiD is:</p>
      <p>ℒ = ℒ  +  ℒ,
where  is a hyperparameter to balance two losses.
(4)
(5)</p>
    </sec>
    <sec id="sec-4">
      <title>4. Experimental setup</title>
      <sec id="sec-4-1">
        <title>4.1. Datasets</title>
        <p>
          We use MIRACL [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ] passage ranking dataset for our
experiments. The MIRACL [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ] dataset is a large-scale,
opendomain, human-generated multi-document ranking dataset
which is similar to MS MARCO [
          <xref ref-type="bibr" rid="ref28">28</xref>
          ], but MIRACL owns
its advantage by providing segmented document collection,
enabling both document retrieval and passage ranking.1 For
the document retrieval task, we construct the document
retrieval dataset by regarding a document with at least one
positive passage, as a positive document. Table 1 shows the
statistics of the datasets.
        </p>
        <p>Task
Document Retrieval
Passage Ranking
# train</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Baselines</title>
        <p>
          We compare PFiD against the following three types of
ranking baselines. The first is Single-Passage Cross-encoder
(SPC) baselines, including MonoT5 [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ], and RankT5 [
          <xref ref-type="bibr" rid="ref21">21</xref>
          ].
Due to the constraint of input tokens, we only take the
ifrst-  tokens in the document retrieval task. An
alternative approach is to score each passage independently, and
then take the passage with the highest score as the
representative for ranking the document, or directly perform
retrieval over the segmented passages. However, we will
omit these approaches as the former lacks eficiency, and
the latter is not scalable for real-world RAG scenarios. Then,
the model is trained list-wisely with randomly sampled
negatives from the entire passage sets; The second is
MultiPassage Cross-encoder (MPC) baselines, including FiD [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ]
and RFiD [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ]. For comparison in our experimental setting,
both FiD and RFiD models are trained with the target token
of true  false, enabling both document retrieval and
passage ranking. All SPC and MPC baselines used in this
experiment are initialized with T5-base model; The third is
the most frequently employed lexical ranker BM25 [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ]. We
use the Elasticsearch engine with default parameters 1 =
1.2, and  = 0.75.
1MS MARCO also provide segmented document collection, but the
segmented corpus do not align with passages in passage ranking tasks.
        </p>
        <p>
          # of Documents = 2
2 3 4
# of Passages
# of Documents = 5
2 3 4
# of Passages
# of Documents = 10
0.7
We adopt T5-base [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ] as our base model, using Adam [
          <xref ref-type="bibr" rid="ref29">29</xref>
          ]
with a learning rate of 10− 4 and a dropout rate of 0.1. For
both training and inference, we use the top-100 passages
and truncate them to 200 of the maximum token length. The
hyperparameter  is set to 0.5. For the document retrieval
task, we perform ranking on BM25 top-100 retrieved
documents, whereas passage ranking ranks the passages within
the given positive document. We also conduct experiments
on real-world RAG scenarios, considering both document
retrieval and passage ranking simultaneously. We use the
evaluation metric of the nDCG [
          <xref ref-type="bibr" rid="ref30">30</xref>
          ], Recall, and MRR scores
to evaluate the efectiveness. All experiments are conducted
on a single NVIDIA A100 GPU (40GB). In this work, we
do not consider other training approaches including data
augmentation, knowledge distillation, or negative sampling
strategies as delving into their efects falls outside the scope
of our objectives.
        </p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Results and Analysis</title>
      <p>Retrieval and Ranking. Table 2 presents our evaluation
results on document retrieval and passage ranking tasks.
The key observations are as follows: (i) MPC significantly
outperforms SPC in document retrieval task by
aggregating multiple  passages, alleviating the problem of limited
context size in SPC. In particular, one can see that PFiD
outperforms RFiD by a large margin on both document ranking
and passage ranking task. This indicates that by leveraging
passage-wise context to guide the decoder, we can better
identify relative passage relevance. Note that compared with
the existing SPC baselines, our method achieves ranking
eficiency by explicitly removing the need for each granularity
ranking. PFiD directly consumes the entire document, and
scores the relevance of the entire passages and document
simultaneously. (ii) RFiD, implicitly guiding the decoder
with rationale embedding shows improvement over FiD by
a large margin, however, it is still even worse than BM25. It
suggests that implicitly guiding indeed benefits the model’s
ranking ability to some extent. However, when ranking
0.8774
0.8916†
0.3725
0.6036
0.8726
0.7856
various passages from multi-documents, traditional MPC
is completely indistinguishable, suggesting cross-attention
score from the decoder is not suited for the passage ranking
task. (iii) SPC achieves superior performance over MPC
in passage ranking task, as it is trained with rich negative
samples from other documents, while MPC is only trained
with in-document negatives. Additionally, even with
indocument negatives, when trained with inter-passage
attention, PFiD can achieve ranking efectiveness that rivals that
of SPC, suggesting that incorporating an additional module
to identify relevant passages is more efective than relying
solely on the cross-attention mechanism of the decoder.
Results on real-world RAG scenario. Next, we
investigate the efectiveness of PFiD in real-world RAG scenarios.
We first retrieve # documents from the candidates, and
rerank # passages within the retrieved documents. Figure 1
represents the result of our evaluation. Notably, from Table 2
we observed that MPC outperforms SPC in document
retrieval tasks, however, the performance drastically drops in
this setting, as cross-attention scores from the decoder are
indistinguishable across passages from multi-documents.
Additionally, despite RankT5 reaching the best
efectiveness on the passage ranking task, it did not exhibit any
improvements over our method in real-world RAG scenarios,
suggesting the importance of the multi-granularity
ranking. Instead, PFiD consistently outperforms all baselines,
by leveraging the complementary nature of SPC and MPC.
PFiD is capable of more eficiently retrieving documents
and ranking passages, and capturing the relative semantic
correlation between diferent passages, leading to superior
performance.</p>
      <p>Cross-attention vs PFiD. As discussed above, PFiD has
the advantage of identifying relevant passages compared to
previous models like RFiD since it explicitly models relative
passage relevance. We investigate the efects of the
crossattention scores of the decoder and our passage ranking
scores for the passage ranking task. Figure 2 illustrates the
distribution of the rank of positive passages. As depicted
in Figure 2, the PFiD is more strongly correlated with
passage relevances than cross-attention scores, suggesting the
PFiD focuses more on positive passages by explicitly
learning relative passage relevance. Our experimental results
show that the enhanced ability to identify relevant passages
contributes to overall performance improvement.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1] OpenAI, Gpt-4
          <source>technical report</source>
          ,
          <year>2024</year>
          . arXiv:
          <volume>2303</volume>
          .
          <fpage>08774</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>H.</given-names>
            <surname>Touvron</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Martin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Stone</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Albert</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Almahairi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Babaei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Bashlykov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Batra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Bhargava</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bhosale</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Bikel</surname>
          </string-name>
          ,
          <string-name>
            <surname>L. B.</surname>
          </string-name>
          et al.,
          <source>Llama</source>
          <volume>2</volume>
          :
          <article-title>Open foundation and fine-tuned chat models</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2307</volume>
          .
          <fpage>09288</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>R.</given-names>
            <surname>Anil</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Firat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Johnson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Lepikhin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Passos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shakeri</surname>
          </string-name>
          , E. Taropa,
          <string-name>
            <given-names>P.</given-names>
            <surname>Bailey</surname>
          </string-name>
          ,
          <string-name>
            <surname>Z. C.</surname>
          </string-name>
          et al.,
          <source>Palm 2 technical report</source>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2305</volume>
          .
          <fpage>10403</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>T. B. Brown</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Mann</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Ryder</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Subbiah</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Kaplan</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Dhariwal</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Neelakantan</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Shyam</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Sastry</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Askell</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Agarwal</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Herbert-Voss</surname>
            , G. Krueger,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Henighan</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Child</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Ramesh</surname>
            ,
            <given-names>D. M.</given-names>
          </string-name>
          <string-name>
            <surname>Ziegler</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Winter</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Hesse</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Chen</surname>
            , E. Sigler,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Litwin</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Gray</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Chess</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Clark</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Berner</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>McCandlish</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Radford</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          <string-name>
            <surname>Sutskever</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Amodei</surname>
          </string-name>
          ,
          <article-title>Language models are few-shot learners</article-title>
          ,
          <year>2020</year>
          . arXiv:
          <year>2005</year>
          .14165.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Mallen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Asai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Zhong</surname>
          </string-name>
          ,
          <string-name>
            <surname>R. Das</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Khashabi</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Hajishirzi</surname>
          </string-name>
          ,
          <article-title>When not to trust language models: Investigating efectiveness of parametric and nonparametric memories</article-title>
          , in: A.
          <string-name>
            <surname>Rogers</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Boyd-Graber</surname>
          </string-name>
          , N. Okazaki (Eds.),
          <source>Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume</source>
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Toronto, Canada,
          <year>2023</year>
          , pp.
          <fpage>9802</fpage>
          -
          <lpage>9822</lpage>
          . URL: https://aclanthology.org/
          <year>2023</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>546</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2023</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>546</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>J.</given-names>
            <surname>Maynez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Narayan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Bohnet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>McDonald</surname>
          </string-name>
          ,
          <article-title>On faithfulness and factuality in abstractive summarization</article-title>
          , in: D.
          <string-name>
            <surname>Jurafsky</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Chai</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Schluter</surname>
          </string-name>
          , J. Tetreault (Eds.),
          <article-title>Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>1906</fpage>
          -
          <lpage>1919</lpage>
          . URL: https:// aclanthology.org/
          <year>2020</year>
          .acl-main.
          <volume>173</volume>
          . doi:
          <volume>10</volume>
          .18653/ v1/
          <year>2020</year>
          .acl-main.
          <volume>173</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>L.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Yu</surname>
          </string-name>
          , W. Ma,
          <string-name>
            <given-names>W.</given-names>
            <surname>Zhong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Peng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Qin</surname>
          </string-name>
          , T. Liu,
          <article-title>A survey on hallucination in large language models: Principles, taxonomy</article-title>
          , challenges, and open questions,
          <year>2023</year>
          . arXiv:
          <volume>2311</volume>
          .
          <fpage>05232</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>P.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Perez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Piktus</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Petroni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Karpukhin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Küttler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          , W. tau Yih, T. Rocktäschel,
          <string-name>
            <given-names>S.</given-names>
            <surname>Riedel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kiela</surname>
          </string-name>
          ,
          <article-title>Retrieval-augmented generation for knowledge-intensive nlp tasks</article-title>
          ,
          <year>2021</year>
          . arXiv:
          <year>2005</year>
          .11401.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>G.</given-names>
            <surname>Izacard</surname>
          </string-name>
          , E. Grave,
          <article-title>Leveraging passage retrieval with generative models for open domain question answering</article-title>
          , in: P. Merlo,
          <string-name>
            <given-names>J.</given-names>
            <surname>Tiedemann</surname>
          </string-name>
          , R. Tsarfaty (Eds.),
          <source>Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics:</source>
          Main Volume,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2021</year>
          , pp.
          <fpage>874</fpage>
          -
          <lpage>880</lpage>
          . URL: https://aclanthology.org/
          <year>2021</year>
          .eacl-main.
          <volume>74</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2021</year>
          .eacl-main.
          <volume>74</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>G.</given-names>
            <surname>Izacard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lomeli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hosseini</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Petroni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Schick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Dwivedi-Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Joulin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Riedel</surname>
          </string-name>
          , E. Grave, Atlas:
          <article-title>Few-shot learning with retrieval augmented language models</article-title>
          ,
          <source>Journal of Machine Learning Research</source>
          <volume>24</volume>
          (
          <year>2023</year>
          )
          <fpage>1</fpage>
          -
          <lpage>43</lpage>
          . URL: http://jmlr.org/papers/v24/
          <fpage>23</fpage>
          -
          <lpage>0037</lpage>
          .html.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Xiong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Jia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Pan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Bi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>Retrieval-augmented generation for large language models: A survey</article-title>
          ,
          <year>2024</year>
          . arXiv:
          <volume>2312</volume>
          .
          <fpage>10997</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>H.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , D. Roth,
          <article-title>Rethinking with retrieval: Faithful large language model inference</article-title>
          ,
          <year>2022</year>
          . arXiv:
          <volume>2301</volume>
          .
          <fpage>00303</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>N.</given-names>
            <surname>Thakur</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Bonifacio</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Ogundepo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Kamalloo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Alfonso-Hermelo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Rezagholizadeh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <article-title>Nomiracl: Knowing when you don't know for robust multilingual retrievalaugmented generation</article-title>
          ,
          <year>2024</year>
          . arXiv:
          <volume>2312</volume>
          .
          <fpage>11361</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>F.</given-names>
            <surname>Shi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Misra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Scales</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Dohan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. H.</given-names>
            <surname>Chi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Schärli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <article-title>Large language models can be easily distracted by irrelevant context</article-title>
          , in: A.
          <string-name>
            <surname>Krause</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          <string-name>
            <surname>Brunskill</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Cho</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Engelhardt</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Sabato</surname>
          </string-name>
          , J. Scarlett (Eds.),
          <source>Proceedings of the 40th International Conference on Machine Learning</source>
          , volume
          <volume>202</volume>
          <source>of Proceedings of Machine Learning Research, PMLR</source>
          ,
          <year>2023</year>
          , pp.
          <fpage>31210</fpage>
          -
          <lpage>31227</lpage>
          . URL: https://proceedings.mlr.press/v202/shi23a. html.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>A.</given-names>
            <surname>Asai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sil</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Hajishirzi</surname>
          </string-name>
          ,
          <article-title>Self-rag: Learning to retrieve, generate, and critique through self-reflection</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2310</volume>
          .
          <fpage>11511</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>S.</given-names>
            <surname>Robertson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zaragoza</surname>
          </string-name>
          ,
          <article-title>The probabilistic relevance framework: Bm25 and beyond</article-title>
          ,
          <source>Foundations and Trends in Information Retrieval</source>
          <volume>3</volume>
          (
          <year>2009</year>
          )
          <fpage>333</fpage>
          -
          <lpage>389</lpage>
          . doi:
          <volume>10</volume>
          .1561/1500000019.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>V.</given-names>
            <surname>Karpukhin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Oğuz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Min</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Edunov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Chen</surname>
          </string-name>
          , W. tau Yih,
          <article-title>Dense passage retrieval for open-domain question answering</article-title>
          ,
          <year>2020</year>
          . arXiv:
          <year>2004</year>
          .04906.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          , Bert:
          <article-title>Pre-training of deep bidirectional transformers for language understanding</article-title>
          ,
          <year>2019</year>
          . arXiv:
          <year>1810</year>
          .04805.
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>C.</given-names>
            <surname>Rafel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Shazeer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Narang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Matena</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. J.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <article-title>Exploring the limits of transfer learning with a unified text-to-text transformer</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <year>1910</year>
          .10683.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>R.</given-names>
            <surname>Nogueira</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Cho</surname>
          </string-name>
          ,
          <string-name>
            <surname>Passage</surname>
          </string-name>
          re-ranking
          <source>with bert</source>
          ,
          <year>2020</year>
          . arXiv:
          <year>1901</year>
          .04085.
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>H.</given-names>
            <surname>Zhuang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Qin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Jagerman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Hui</surname>
          </string-name>
          , J. Ma, J. Lu,
          <string-name>
            <given-names>J.</given-names>
            <surname>Ni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Bendersky, Rankt5: Finetuning t5 for text ranking with ranking losses</article-title>
          ,
          <year>2022</year>
          . arXiv:
          <volume>2210</volume>
          .
          <fpage>10634</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>R.</given-names>
            <surname>Nogueira</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <article-title>Document ranking with a pretrained sequence-to-sequence model</article-title>
          ,
          <year>2020</year>
          . arXiv:
          <year>2003</year>
          .06713.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>X.</given-names>
            <surname>Ma</surname>
          </string-name>
          , L.
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Wei</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Lin</surname>
          </string-name>
          ,
          <article-title>Finetuning llama for multi-stage text retrieval</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2310</volume>
          .
          <fpage>08319</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>C.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , Rfid:
          <article-title>Towards rational fusion-in-decoder for open-domain question answering</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2305</volume>
          .
          <fpage>17041</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Thakur</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Ogundepo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Kamalloo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Alfonso-Hermelo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Rezagholizadeh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <source>MIRACL: A Multilingual Retrieval Dataset Covering 18 Diverse Languages, Transactions of the Association for Computational Linguistics</source>
          <volume>11</volume>
          (
          <year>2023</year>
          )
          <fpage>1114</fpage>
          -
          <lpage>1131</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>G.</given-names>
            <surname>Izacard</surname>
          </string-name>
          , E. Grave,
          <article-title>Distilling knowledge from reader to retriever for question answering</article-title>
          ,
          <year>2022</year>
          . arXiv:
          <year>2012</year>
          .04584.
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>J.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Xie</surname>
          </string-name>
          ,
          <article-title>Longtriever: a pre-trained long text encoder for dense document retrieval</article-title>
          , in: H.
          <string-name>
            <surname>Bouamor</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Pino</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          Bali (Eds.),
          <source>Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing</source>
          , Association for Computational Linguistics, Singapore,
          <year>2023</year>
          , pp.
          <fpage>3655</fpage>
          -
          <lpage>3665</lpage>
          . URL: https://aclanthology.org/
          <year>2023</year>
          .emnlp-main.
          <volume>223</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2023</year>
          .emnlp-main.
          <volume>223</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>P.</given-names>
            <surname>Bajaj</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Campos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Craswell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Deng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Majumder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>McNamara</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Mitra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Nguyen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Rosenberg</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Stoica</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Tiwary</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>Ms marco: A human generated machine reading comprehension dataset</article-title>
          ,
          <year>2018</year>
          . arXiv:
          <volume>1611</volume>
          .
          <fpage>09268</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>D. P.</given-names>
            <surname>Kingma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Ba</surname>
          </string-name>
          ,
          <article-title>Adam: A method for stochastic optimization</article-title>
          ,
          <year>2017</year>
          . arXiv:
          <volume>1412</volume>
          .
          <fpage>6980</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [30]
          <string-name>
            <given-names>K.</given-names>
            <surname>Järvelin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kekäläinen</surname>
          </string-name>
          ,
          <article-title>Cumulated gain-based evaluation of ir techniques</article-title>
          ,
          <source>ACM Trans. Inf. Syst</source>
          .
          <volume>20</volume>
          (
          <year>2002</year>
          )
          <fpage>422</fpage>
          -
          <lpage>446</lpage>
          . URL: https://doi.org/10.1145/582415.582418. doi:
          <volume>10</volume>
          .1145/582415.582418.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>