<!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>
      <issn pub-type="ppub">1613-0073</issn>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Refinement for RAG</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Kihun Kim</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mintae Kim</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Hokyung Lee</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Seongik Park</string-name>
          <email>spark32@lguplus.co.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Youngsub Han</string-name>
          <email>yshan042@lguplus.co.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Byoung-Ki Jeon</string-name>
          <email>bkjeon@lguplus.co.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>LG UPLUS</institution>
          ,
          <addr-line>71, Magokjungang 8-ro, Gangseo-gu, Seoul</addr-line>
          ,
          <country>Republic of Korea</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2024</year>
      </pub-date>
      <abstract>
        <p>Recent advancements in the contextual understanding and generation capabilities of Large Language Models (LLMs) have sparked increasing interest in the application of Retrieval-Augmented Generation (RAG) in specific domains and industry documents. Retrieving and understanding tables within these documents is crucial for generating correct answers in RAG systems. This study focuses on documents containing large and complex tables, such as statistical and industry reports and these presents two major challenges: 1) processing the large tables and 2) understanding complex tables. Previous studies faced challenges as they considered elements of tabular data such as cells, headers, and titles. In contrast, we designed the Table Header for Retrieval and Refinement (THoRR) method to address the aforementioned issues. THoRR performs two tasks: table retrieval and table refinement. In the table retrieval phase, we propose a table header representation approach that uses headers and titles, without considering cells. In the refinement phase, the model selects relevant table headers from the retrieved tables and processes them into refined tables containing the necessary information to answer the questions. This approach aids in understanding complex tables without chunking, by reorganizing information. Our models outperform existing approaches such as DTR and DPR-table. Moreover, we experimentally demonstrate that our refinement model can reduce hallucinations. To the best of our knowledge, our table refinement approach for RAG system is the first of its kind in the field. table retrieval, complex table, retrieval-augmented generation (RAG), table refinement, table representation Workshop Proceedings</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        The first challenge involves processing large and complex
were designed with relatively simple open-domain tables in
mind, such as those found in the nq-table[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] dataset, thus
de-emphasizing the processing of large tables. Similar to the
processing of text documents, previous methods involved
dividing data tables into fixed-length segments (chunking),
or even cutof parts that exceeded a maximum input length.
The chunking method complicates data retrieval by not only
increasing the number of retrieval targets but also making
it challenging to compare values across segmented tables.
Moreover, disregarding overflow sections risks losing table
information, diminishing the probability of obtaining a
sufifcient table representation. These problems can ultimately
afect table retrieval performance.
      </p>
      <p>
        The second challenge is the dificulty in understanding
tables due to their complex structure. Complex tables typically
feature hierarchical headers and numerous values,
presenting a challenge for generator to consider vast amounts of
information. Insuficient table comprehension can lead to
incorrect answers (hallucinations). Figure 1 demonstrates an
example where GPT-3.5-turbo[
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] is used to perform tableQA
on a hierarchical table. It showcases how the original table
leads to incorrect responses, whereas the refined table, as
processed by our proposed model, yields the correct
answers.
      </p>
      <p>In this paper, we propose Table Header For Retrieval and
Refinement ( THoRR) to solve this problem. These method
is grounded in a heuristic assumption that, when finding
and understanding tables, headers are more critical than
values. THoRR has two models, a retriever and a
refinement model, performed sequentially. Each is diferent from
the previous one. THoRR: Retriever uses a table header
representation. It performs table retrieval using only the
header without considering the cells of the table. THoRR:
Refinement performs relevant table header detection in the
retrieved table to select table headers that are relevant to the
question, and refines them into a simple table that contains
only the necessary information, reducing the amount of
information the generator needs to consider.</p>
      <p>
        We compare THoRR with DTR[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] and DPR-table[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] and
show that it has better retrieval performance in fine-tuning
and zero-shot experiments on the HiTab[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] and AIT-QA[
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]
the result of the original complex table (top) and the refined table
(bottom).
      </p>
      <p>
        Recent advancements in the contextual understanding
and generative capabilities of Large Language Models
(LLMs) have heightened interest in Retrieval-Augmented
Generation (RAG)[
        <xref ref-type="bibr" rid="ref1 ref2">1, 2</xref>
        ] for specific domains such as open
domain or industry-specific documents. Industry or finance
domain documents often contain large and complex tables.
The understanding of which is critical for a RAG system to
produce accurate responses. However, this task presents
several challenges. Our research seeks solutions to two
primary challenges.
      </p>
      <p>IR-RAG’24: Information Retrieval’s Role in RAG Systems (IR-RAG), July
∗Corresponding author.</p>
      <p>0009-0005-9453-7443 (K. Kim)</p>
      <p>CEUR</p>
      <p>ceur-ws.org
datasets while reducing the information (number of cells)
needed to input the generator. Furthermore, our proposed
methodology enables an eficient reduction in the number
of tokens required for table inputs in the generator.
2.</p>
    </sec>
    <sec id="sec-2">
      <title>Method</title>
      <p>
        In this section, we present the Table Header For Retrieval
and Refinement ( THoRR) method, designed to retrieve and
refine tables within the RAG system [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. THoRR is divided
into two phases, retrieval and refinement, as shown in Figure
2. These two phases are separately trained and serve distinct
purposes. The retrieval phase is utilized for embedding and
indexing tables. Subsequently, as a question is input, it
retrieves the pre-indexed tables. In the refinement phase,
the retrieved tables are processed to extract the necessary
information, refining them into smaller tables.
      </p>
      <p>The goal of this method is to obtain the  
_ refined
Tables   relevant to the given 
target Tables  when a
question  is provided. We denote the components of  as

, ℎ
 , and ℎ</p>
      <p>, representing the row headers,
column headers, and title, respectively. The comparative
experiments between THoRR and the existing table retrieval
baseline are explained in Section 3.1</p>
      <sec id="sec-2-1">
        <title>2.1. Table Retriever</title>
        <p>Given M target tables T, Our THoRR:retrieval model aims to
retrieve the</p>
        <p>
          _ candidate tables containing information
relevant to the question Q. In this paper, we follow the
structure of DPR[
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] for comparison with DPR-table[
          <xref ref-type="bibr" rid="ref4">4</xref>
          ]. we use
two diferent encoders (the table header encoder ( 
the question encoder (
of [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ]. 
 maps target 
 ), both utilizing the base model

 , and then select the
        </p>
        <p>
          _ closest candidate tables for
indexed  from it. The similarity between  and  is defined
by using the dot product, as in [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] (equation 2), and the
encoder uses the base model of [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ].
        </p>
        <p>= {[]  [ ]
ℎ
 [ ]
ℎ

[ ]}
(, ) = 
 () ⊤ ⋅ 
 (  )
(1)
(2)
In this process, a diference aspect of our retriever compared
to previous research lies in the table header representation</p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. Table Refinement Model</title>
        <p>equation 4, where the ℎ ∈ [ℎ
This paper introduces a new task called Table Refinement,
defined as simplifying a table while preserving specific
information. Accordingly, our THoRR:refinement model aims to
obtain refined tables, denoted as   , for the  

, ℎ
 ].
Similar to equation 5,   is input to the refinement encoder  
to obtain hidden states. And then, the linear layer takes in
these hidden states and outputs the relevant header score,
denoted as ℎ. Using ℎ, we obtain the  
_ relevant column
headers indices (  ) and</p>
        <p>_ relevant row header indices
(  ) as specified in Equation 6. Subsequently, we refine
candidate tables using selected row and column indices to obtain
 .

(3)
(4)
(5)
(6)
(7)
 . Our method, which utilizes the table’s header and title
without considering every cell, is relatively free from the
input limitations of the encoder. The chunking method and
our comparative experiments are explained in Section 3.2</p>
        <p>The objective of the training is to minimize the
disas Negative Log Likelihood (NLL) :
tance between questions q and positive table 
maximizing the distance between queries and the
number of  negative tables 
 = {(  ,  
+
, 
−
,1
, 
−
,2
, ..., 
−
,
)}</p>
        <p>− in a given training dataset

=1 . The loss function, optimized

+ while
 
(  , 

+
, 
−
,1
, 
−
,2
, ...,</p>
        <p>,− )
= −</p>
        <p>∑=1 
(

(</p>
        <p>, +)
 , +) +  (
 , ,−)
  = {[]  [ ]
ℎ [ ]}
ℎ =   (  )




=  (ℎ
=  (ℎ
 ,  
 ,  
_)
_)
and  is the gold relevant header index.</p>
        <p>The learning objective aims to identify the index of the
question and relevant header, with the goal of increasing
the score of the answer’s header index ℎ . The loss function
is as described in Equation (5), We optimized Cross Entropy
Loss. Where,  represents the number of tokens in input  
  
(ℎ,  ) = −</p>
        <p>∑=1
(ℎ</p>
        <p>)
= (ℎ
 )</p>
        <p>AIT-QA Zero-shot
HIT@5 HIT@10 HIT@20</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. EXPERIMENTS</title>
      <p>
        Dataset We conduct experiments on two complex table
benchmark datasets. HiTab[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] is a Table QA dataset with
a hierarchical structure. This dataset consists of questions
that require complex numerical calculations, including
tables from Wikipedia and statistical reports. It contains a
total of 10,672 question-answer pairs, with 7,417 for
training, 1,671 for validation, and 1,584 for testing. There are
a total of 3,597 tables in this dataset. We use this dataset
for fine-tuning. AIT-QA[
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] is a Table QA dataset specific to
the Airline industry, composed of tables extracted from the
U.S. public SEC filings. It includes specialized vocabulary
terms for a specific domain and also has a hierarchical
structure like HiTab[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. It consists of 515 questions and answers,
with a total of 116 tables. In this paper, this dataset is used
to evaluate the zero-shot performance of the fine-tuning
model.
      </p>
      <p>
        Baseline In order to demonstrate the performance of our
method, we compare it with baseline methods. DTR[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] is
a table encoder that uses a table-specific structure.
DPRtable[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], on the other hand, processes tables linearly, similar
to understanding text passages. Both of these baselines
have been trained on the nq-dataset[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] and their pretrained
models are publicly available. We fine-tune these pre-train
models as backbones and compare them with our model.
      </p>
      <sec id="sec-3-1">
        <title>3.1. Main Result : THoRR</title>
        <p>The experiments in this paper evaluate the proposed
models, THoRR, in a two-phase process as shown in Figure 1
(THoRR:retrieval and THoRR:refinement). The performance
of the models is evaluated using the ’Hits accuracy’ as the
main evaluation metric. This metric measures the ratio of
correct answers included in the   _ selected tables by
the models. Where,   _ takes values 1, 5, 10, 20, 50 to
evaluate the accuracy of the models.</p>
        <p>
          Fine-tuning To compare fine-tuning experiments on the
complex table dataset, we train THoRR and baselines using
the HiTab [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] training set. Table 1 presents the performance
of the THoRR method compared to baseline models. The
experimental results indicate that the proposed models
outperformed baselines in most cases. When   _ = 7 and
  _ &lt;= 10 , the proposed models exhibit an accuracy
improvement of more than 5% compared to the baseline’s
best accuracy. The superior performance at a small   _
indicates the importance in the RAG system, as it indicates
efective utilization of a limited number of reference pieces
of information, which is common when the   _ is less
than 10.
        </p>
        <p>
          Zero-shot The zero-shot experiment intend to observe
how the model performs on complex table data from a new
domain. In this process, a fine-tuned model using the HiTab
[
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] dataset is used to make predictions on the AIT-QA[
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]
dataset without any additional training, and the results are
evaluated. Through this experiment, we aim to demonstrate
that the proposed models can handle complex table retrieval
in previous unseen domains. Table 1 presents the results of
this experiment, showing superior performance compared
to the baselines and indicating well THoRR works on
complex tables in diferent domains.
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Retrieval Result</title>
        <p>(a)
(b)</p>
        <p>
          We compare our proposed table header representation
method and chunking method in terms of retrieval accuracy.
Figure 3(a) illustrates the performance of [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ] with the
chunking method and our method. (”inf” refers to the use of the
original table without chunking.) As shown in Figure 3(b),
we observe a decrease in retrieval accuracy as the lower max
token length, indicating that the number of retrieval targets
afects the performance significantly in retrieval tasks. Our
approach demonstrates superior performance compared to
methods that consider all values. This highlights the
efectiveness of our method, which relies solely on table headers
for table representation, especially in retrieving large and
complex tables. Moreover, our method demonstrates
superior performance compared to existing approaches that
consider all values, thereby experimentally validating our
heuristic assumption that headers are crucial elements in
table retrieval.
        </p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Refinement Result</title>
        <p>
          In this section, we experiment with our refinement model
to reduce cell information in mitigating hallucinations. In
Figure 4, the green line indicates a decreasing trend in the
number of cells in tables when using our model.
Furthermore, Figure 4 illustrates the human evaluation accuracy on
the results obtained by input refined tables into Llama2[
          <xref ref-type="bibr" rid="ref11">11</xref>
          ]
7B-Chat. Where, ”(-,-)” denotes the original table. We
randomly sample 300 questions from the HiTab test dataset for
human evaluation. Llama2[
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] 7B-Chat takes a gold table as
input to generate responses. If the generated response
contains exactly the answer and is correct, we mark it as correct.
Otherwise, we consider it as a hallucination. Three master’s
students in the field of AI evaluated the generated results.
To ensure the reliability of the evaluations, one evaluator
and two validators were assigned roles in the evaluation
process. As a result, by setting   _ = 7 and   _ = 10 ,
we demonstrate that our refinement model reduces the
number of table cells from 153.88 to 58.03, resulting in a 62.2%
decrease compared to the original table. Additionally, we
observe a 9.33% improvement in the reduction of
hallucinations. This validates the superiority of our refinement
approach.
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Related Works</title>
      <p>
        Research on table encoders has been focused on pre-training
tabular data with table-specific architectures[
        <xref ref-type="bibr" rid="ref12 ref13 ref14 ref15 ref16">12, 13, 14, 15,
16, 17</xref>
        ]. TAPAS[
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] introduces a pre-training method using
Masked-Language-Modeling for the cells of tabular data.
TaBERT[
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] introduces a pre-training model that jointly
learns over 26 million natural language questions and
tables. TURL[18] introducing a structure-aware Transformer
encoder and Masked Entity Recovery (MER) objective for
pre-training. StruG[
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] proposes a semi-supervised
learning framework for learning the connection between text
and SQL. MATE[
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] demonstrates the eficient restriction of
Transformer attention flow on tabular data, enabling
training with larger sequence lengths. Tableformer[
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] learns
from tables using attention biases, making it better at
understanding tabular data. TABBIE[17] introduces a method
to improve performance on table-based prediction tasks by
pre-training only tabular data.
      </p>
      <p>
        Research on table retrieval includes methodologies such
as [
        <xref ref-type="bibr" rid="ref3 ref4">19, 3, 4, 20, 21</xref>
        ]. Table2vec[19] proposes a method for
obtaining table embeddings by considering various table
elements such as captions, headers, cells, and entities. DTR[
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]
introduces a table-specific model suitable for open-domain
table question answering. DPR-table[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] linearizes tables
to handle them similar to text passages, instead of using
table-specific models. GTR[ 20] introduces a model that
transforms tables into graphs, capturing both cell and
layout structures. [21] introduces a method for enhancing
the similarity between queries and tables for table retrieval,
employing various semantic spaces and similarity
measurement methods.
      </p>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>We propose the THoRR method, which uses the table
headers to retrieve and help understand the complex and large
tables. We use the table header representations in the
retriever that can retrieve tables without chunking them.
Additionally, we propose a novel methodology for refining
tables by detecting the table headers that are relevant to the
questions within the table. This approach aims to simplify
the tables in which an excessive amount of information is
present, particularly in complex tables. THoRR is capable
of handling large and complex tables without dividing them
into smaller chunks, reducing the information required for
preventing hallucinations in LLM generator. Furthermore,
the Table Refinement task is the first of its kind in this field,
therefore, it is expected to contribute significantly to the
future research in this field. Our future work involves
exploring methods to detect the table headers. Additionally,
we aim to prevent potential information loss in questions
by selecting fewer relevant headers during the refinement
phase.
18653/v1/2022.acl-long.40.
[17] H. Iida, D. Thai, V. Manjunatha, M. Iyyer,
TABBIE: Pretrained representations of tabular data,
in: K. Toutanova, A. Rumshisky, L. Zettlemoyer,
D. Hakkani-Tur, I. Beltagy, S. Bethard, R. Cotterell,
T. Chakraborty, Y. Zhou (Eds.), Proceedings of the
2021 Conference of the North American Chapter of
the Association for Computational Linguistics:
Human Language Technologies, Association for
Computational Linguistics, Online, 2021, pp. 3446–3456. URL:
https://aclanthology.org/2021.naacl-main.270. doi:10.
18653/v1/2021.naacl-main.270.
[18] X. Deng, H. Sun, A. Lees, Y. Wu, C. Yu, Turl:
table understanding through representation
learning, Proc. VLDB Endow. 14 (2020) 307–319.
URL: https://doi.org/10.14778/3430915.3430921. doi:10.
14778/3430915.3430921.
[19] L. Zhang, S. Zhang, K. Balog, Table2vec: Neural word
and entity embeddings for table population and
retrieval, in: Proceedings of the 42nd International ACM
SIGIR Conference on Research and Development in
Information Retrieval, SIGIR’19, Association for
Computing Machinery, New York, NY, USA, 2019, p. 1029–1032.
URL: https://doi.org/10.1145/3331184.3331333. doi:10.
1145/3331184.3331333.
[20] F. Wang, K. Sun, M. Chen, J. Pujara, P. Szekely,
Retrieving complex tables with multi-granular graph
representation learning, SIGIR ’21, Association for
Computing Machinery, New York, NY, USA, 2021, p. 1472–1482.
URL: https://doi.org/10.1145/3404835.3462909. doi:10.
1145/3404835.3462909.
[21] S. Zhang, K. Balog, Semantic tablenbsp;retrieval
using keyword and table queries, ACM Trans. Web 15
(2021). URL: https://doi.org/10.1145/3441690. doi:10.
1145/3441690.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <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.-t. Yih,
          <string-name>
            <given-names>T.</given-names>
            <surname>Rocktäschel</surname>
          </string-name>
          ,
          <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>
          ,
          <source>in: Proceedings of the 34th International Conference on Neural Information Processing Systems</source>
          , NIPS'20, Curran Associates Inc.,
          <string-name>
            <surname>Red</surname>
            <given-names>Hook</given-names>
          </string-name>
          ,
          <string-name>
            <surname>NY</surname>
          </string-name>
          , USA,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <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>Q.</given-names>
            <surname>Guo</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>Retrievalaugmented generation for large language models: A survey</article-title>
          ,
          <source>ArXiv abs/2312</source>
          .10997 (
          <year>2023</year>
          ). URL: https: //api.semanticscholar.org/CorpusID:266359151.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>J.</given-names>
            <surname>Herzig</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Müller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Krichene</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Eisenschlos</surname>
          </string-name>
          ,
          <article-title>Open domain question answering over tables via dense retrieval</article-title>
          , in: K.
          <string-name>
            <surname>Toutanova</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rumshisky</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Zettlemoyer</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Hakkani-Tur</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          <string-name>
            <surname>Beltagy</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Bethard</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Cotterell</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Chakraborty</surname>
          </string-name>
          , Y. Zhou (Eds.),
          <source>Proceedings of the</source>
          <year>2021</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Association for Computational Linguistics</article-title>
          , Online,
          <year>2021</year>
          , pp.
          <fpage>512</fpage>
          -
          <lpage>519</lpage>
          . URL: https://aclanthology.org/
          <year>2021</year>
          .naacl-main.
          <volume>43</volume>
          . doi:
          <volume>10</volume>
          . 18653/v1/
          <year>2021</year>
          .naacl- main.43.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Jiang</surname>
          </string-name>
          , E. Nyberg, G. Neubig,
          <article-title>Table retrieval may not necessitate table-specific model design</article-title>
          , in: W.
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <string-name>
            <surname>Yao</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Yasunaga</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Yu</surname>
          </string-name>
          , R. Zhang (Eds.),
          <source>Proceedings of the Workshop on Structured and Unstructured Knowledge Integration (SUKI)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Seattle, USA,
          <year>2022</year>
          , pp.
          <fpage>36</fpage>
          -
          <lpage>46</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .suki-
          <volume>1</volume>
          .5. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2022</year>
          .suki-
          <volume>1</volume>
          .5.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>T.</given-names>
            <surname>Kwiatkowski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Palomaki</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Redfield</surname>
          </string-name>
          , M. Collins,
          <string-name>
            <given-names>A.</given-names>
            <surname>Parikh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Alberti</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Epstein</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Polosukhin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</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>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kelcey</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Uszkoreit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Le</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Petrov</surname>
          </string-name>
          ,
          <article-title>Natural questions: A benchmark for question answering research, Transactions of the Association for Computational Linguistics 7 (</article-title>
          <year>2019</year>
          )
          <fpage>452</fpage>
          -
          <lpage>466</lpage>
          . URL: https: //aclanthology.org/Q19-1026. doi:
          <volume>10</volume>
          .1162/tacl_a_
          <fpage>00276</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <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>
          ,
          <source>in: Proceedings of the 34th International Conference on Neural Information Processing Systems</source>
          , NIPS'20, Curran Associates Inc.,
          <string-name>
            <surname>Red</surname>
            <given-names>Hook</given-names>
          </string-name>
          ,
          <string-name>
            <surname>NY</surname>
          </string-name>
          , USA,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Cheng</surname>
          </string-name>
          , H.
          <string-name>
            <surname>Dong</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Jia</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Guo</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Gao</surname>
            , S. Han,
            <given-names>J</given-names>
          </string-name>
          .-G. Lou,
          <string-name>
            <surname>D. Zhang,</surname>
          </string-name>
          <article-title>HiTab: A hierarchical table dataset for question answering and natural language generation</article-title>
          , in: S. Muresan,
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . Villavicencio (Eds.),
          <source>Proceedings of the 60th 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>
          , Dublin, Ireland,
          <year>2022</year>
          , pp.
          <fpage>1094</fpage>
          -
          <lpage>1110</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>78</volume>
          . doi:
          <volume>10</volume>
          . 18653/v1/
          <year>2022</year>
          .acl- long.78.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Katsis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chemmengath</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Kumar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bharadwaj</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Canim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Glass</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gliozzo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Pan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Sen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Sankaranarayanan</surname>
          </string-name>
          , S. Chakrabarti, AIT-QA:
          <article-title>Question answering dataset over complex tables in the airline industry</article-title>
          , in: A.
          <string-name>
            <surname>Loukina</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Gangadharaiah</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          Min (Eds.),
          <source>Proceedings of the</source>
          <year>2022</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies: Industry Track, Association for Computational Linguistics</article-title>
          , Hybrid: Seattle, Washington + Online,
          <year>2022</year>
          , pp.
          <fpage>305</fpage>
          -
          <lpage>314</lpage>
          . URL: https://aclanthology. org/
          <year>2022</year>
          .naacl-industry.
          <volume>34</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2022</year>
          . naacl- industry.34.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>V.</given-names>
            <surname>Karpukhin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Oguz</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.-t. Yih,
          <article-title>Dense passage retrieval for open-domain question answering</article-title>
          , in: B.
          <string-name>
            <surname>Webber</surname>
            , T. Cohn,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>He</surname>
          </string-name>
          , Y. Liu (Eds.),
          <source>Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>6769</fpage>
          -
          <lpage>6781</lpage>
          . URL: https://aclanthology.org/
          <year>2020</year>
          .emnlp-main.
          <volume>550</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          .emnlp- main.550.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <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>
          , in: J.
          <string-name>
            <surname>Burstein</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Doran</surname>
          </string-name>
          , T. Solorio (Eds.),
          <source>Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , Volume
          <volume>1</volume>
          (Long and Short Papers),
          <source>Association for Computational Linguistics</source>
          , Minneapolis, Minnesota,
          <year>2019</year>
          , pp.
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          . URL: https://aclanthology. org/N19-1423. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>N19</fpage>
          - 1423.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <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>
          , et al.,
          <source>Llama</source>
          <volume>2</volume>
          :
          <article-title>Open foundation and finetuned chat models</article-title>
          ,
          <source>arXiv preprint arXiv:2307.09288</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>J.</given-names>
            <surname>Herzig</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. K.</given-names>
            <surname>Nowak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Müller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Piccinno</surname>
          </string-name>
          ,
          <string-name>
            <surname>J. Eisenschlos,</surname>
          </string-name>
          <article-title>TaPas: Weakly supervised table parsing via pre-training</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>4320</fpage>
          -
          <lpage>4333</lpage>
          . URL: https: //aclanthology.org/
          <year>2020</year>
          .acl-main.
          <volume>398</volume>
          . doi:
          <volume>10</volume>
          .18653/ v1/
          <year>2020</year>
          .acl- main.398.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>P.</given-names>
            <surname>Yin</surname>
          </string-name>
          , G. Neubig, W.-t. Yih, S. Riedel,
          <article-title>TaBERT: Pretraining for joint understanding of textual and tabular data</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>8413</fpage>
          -
          <lpage>8426</lpage>
          . URL: https:// aclanthology.org/
          <year>2020</year>
          .acl-main.
          <volume>745</volume>
          . doi:
          <volume>10</volume>
          .18653/ v1/
          <year>2020</year>
          .acl- main.745.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>X.</given-names>
            <surname>Deng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. H.</given-names>
            <surname>Awadallah</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Meek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Polozov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Richardson</surname>
          </string-name>
          ,
          <article-title>Structure-grounded pretraining for text-to-SQL, in:</article-title>
          K.
          <string-name>
            <surname>Toutanova</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rumshisky</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Zettlemoyer</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Hakkani-Tur</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          <string-name>
            <surname>Beltagy</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Bethard</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Cotterell</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Chakraborty</surname>
          </string-name>
          , Y. Zhou (Eds.),
          <source>Proceedings of the</source>
          <year>2021</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Association for Computational Linguistics</article-title>
          , Online,
          <year>2021</year>
          , pp.
          <fpage>1337</fpage>
          -
          <lpage>1350</lpage>
          . URL: https://aclanthology.org/
          <year>2021</year>
          .naacl-main.
          <volume>105</volume>
          . doi:
          <volume>10</volume>
          . 18653/v1/
          <year>2021</year>
          .naacl- main.105.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>J.</given-names>
            <surname>Eisenschlos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gor</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Müller</surname>
          </string-name>
          , W. Cohen,
          <article-title>MATE: Multi-view attention for table transformer eficiency</article-title>
          , in: M.
          <article-title>-</article-title>
          <string-name>
            <surname>F. Moens</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Specia</surname>
          </string-name>
          , S. W.-t. Yih (Eds.),
          <source>Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing</source>
          , Association for Computational Linguistics, Online and
          <string-name>
            <given-names>Punta</given-names>
            <surname>Cana</surname>
          </string-name>
          , Dominican Republic,
          <year>2021</year>
          , pp.
          <fpage>7606</fpage>
          -
          <lpage>7619</lpage>
          . URL: https://aclanthology.org/
          <year>2021</year>
          .emnlp-main.
          <volume>600</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2021</year>
          .emnlp- main.600.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>J.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gupta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Upadhyay</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Goel</surname>
          </string-name>
          , S. Paul, TableFormer:
          <article-title>Robust transformer modeling for tabletext encoding</article-title>
          , in: S. Muresan,
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . Villavicencio (Eds.),
          <source>Proceedings of the 60th 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>
          , Dublin, Ireland,
          <year>2022</year>
          , pp.
          <fpage>528</fpage>
          -
          <lpage>537</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>40</volume>
          . doi:10.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>