Tables Decoded: DELTA for Structure, TAR QA for Understanding Jahanvi Rajput∗1 , Dhruv Kudale*1†, Saikiran Kasturi1 , Utkarsh Verma1 , Ganesh Ramakrishnan1,2 {23d0378, 22m2116, 24m2157, 24m2153, ganramkr}@iitb.ac.in
arXiv:2609.17458v1 [cs.CV] 15 Sep 2026
1
Indian Institute of Technology Bombay, 2 BharatGen
Abstract Table understanding is a core task in document intelligence, encompassing two key subtasks: table reconstruction and table visual question answering (TabVQA). While recent approaches predominantly rely on visionlanguage models (VLMs) operating on table images, we propose a more scalable and effective alternative based on structured textual representations. These representations are easier to process, align more naturally with LLMs, and eliminate the need for language-specific visual encoders, making them particularly suitable for multilingual documents. We present DELTA, which separates physical structure recognition, logical structure recognition, and OCR to extract both layout and content accurately. DELTA outputs tables in Optimised Table Structure Language (OTSL), a compact and unified format that encodes cell arrangements and textual content. On table structure recognition (TSR), DELTA achieves TEDSStructure scores comparable with state-of-the-art methods across FinTabNet, PubTabNet, and PubTables-1M. We further establish its robustness on non-English tables through our curated Hindi benchmark, TORQUE. Building on this, we introduce TAR QA, an LLM fine-tuned on OTSL sequences. Our approach yields gains of 9.3 p.p. on WTQ (TabQA) and 9.2 p.p. on FinTabNetQA (TabVQA), respectively. On TORQUE, our method ranks second among all VLMs and DELTA + LLM variants. We release our code, models, and benchmark at: https://github.com/ Tihiitborg/Tables-Decoded.
1. Introduction Tables are a vital medium for structured information in domains like science, finance, and administration. Their visual layouts encode relational data, supporting tasks such as retrieval, parsing, summarization, and Table Visual Question Answering (TabVQA). Real-world tables, however, present * Authors contributing equally. † Work done while pursuing MS at IIT Bombay.
challenges: diverse layouts, formatting variations, multiple languages, and complications like merged cells, spanning, or noisy scans. Broadly, as seen in Figure (1), existing approaches to table understanding follow one of the many distinct paradigms. The first relies on Vision Language Models (VLMs), which directly consume table images and jointly model visual and textual features using architectures pretrained on large multimodal datasets. These models are typically fine-tuned end-to-end for tasks such as table detection, reconstruction, or TabVQA. The second paradigm leverages Large Language Models (LLMs), which operate entirely in the language space. In this setting, tables are first serialized into textual formats, such as HTML, Markdown, or plain-text formats, before being provided as input prompts to LLMs (Figure (1)). These models then reason over these serialized tables to answer queries. While VLMs benefit from strong visual grounding, they are often monolithic and inflexible, tightly coupling layout reasoning, content extraction, and question answering into a single opaque pipeline. This end-to-end dependency makes them difficult to debug or adapt. Moreover, they require extensive pretraining with image-text pairs. VLMs also show a performance gap, especially for non-Latin scripts or lowresource languages. Crucially, the internal representations they learn are often not interpretable or easily transferable to new tasks. In contrast, LLM-based approaches offer a modular, language-agnostic alternative. Once tables are converted into structured textual formats, general-purpose LLMs can perform downstream tasks like TabVQA with minimal fine-tuning. However, the challenge lies in the table serialization process itself. An important factor that significantly impacts table understanding performance, especially when leveraging LLMs, is the choice of table representation. Simple plain-text formats fail to preserve structural information such as rows, columns, and cells, making it difficult for models to infer relationships between table elements. While formats like LaTeX and HTML can accurately capture table structures, they are often verbose and lead to long token sequences, which strain the input limitations of most LLMs and reduce overall efficiency. Markdown, though more compact, cannot faithfully rep-
End-to-end Paradigm
Input Table Image Table given as an image input
VLM
Answer
Input Query
Decoupled Paradigm
Input Table Image
TSR
OCR
Table represented in text sequence
LLM
Answer
Input Query
Our Doubly Decoupled Paradigm Input Table Image
Physical TSR
OCR Logical TSR
Table represented in text sequence
LLM
Answer
Input Query
Figure 1. TabVQA paradigms: (i) end-to-end, where a VLM directly processes the table image and question; (ii) decoupled, where TSR + OCR extracts structure and content into text (HTML, OTSL) for an LLM; and (iii) our doubly decoupled approach, which further separates physical and logical TSR for better control. The steps following OCR remain the same as for the conventional decoupled approach.
resent complex structures involving merged cells, making it unsuitable for complex tables. These limitations highlight the need for a compact format, one that preserves both structure and content while remaining well-suited for LLMbased processing. To address this, we advocate the use of the recently proposed Optimised Table Structure Language (OTSL) sequences [29]. OTSL provides a compact yet expressive linear representation of tables, capturing hierarchical layouts, spanning cells, and textual content in a form shorter than HTML while preserving structure. We design a modular pipeline that is doubly decoupled (Figure (1)): first, by separating Table Structure Recognition (TSR) and Optical Character Recognition (OCR) to handle structure and text independently, and second, within TSR itself by disentangling physical (rows, columns) from logical (cell arrangement) structure. This design improves interpretability, robustness across document styles and languages, and scalability for TabVQA. It outperforms recent end-to-end VLMs on standard benchmarks and enables multilingual TabVQA, including low-resource scripts, by shifting reasoning to text-based LLMs using OTSL. Our main contributions are as follows: • We present DELTA, a Doubly dEcoupled tabLe reconsTruction Approach that doubly decouples TSR followed by OCR to produce a compact OTSL sequence with high structural fidelity, outperforming recent VLMs. • To support downstream tasks, we introduce a lossless al-
gorithm to convert widely used HTML format into OTSL, effectively capturing both table structure and content. • We propose TAR QA, TAble structuRe-aware Question Answering, an LLM fine-tuned on OTSL-formatted tables for TabVQA, demonstrating stronger performance over models fine-tuned on HTML and other baselines on WikiTableQuestions (WTQ) and FinTabNetQA datasets. • Finally, we introduce and release TORQUE, Table Oriented Reconstruction and Question-answering Upon dEvanagari, a new Hindi benchmark to demonstrate the multilingual capability of our framework, showcasing effective performance on both table reconstruction and TabVQA tasks for the Hindi language.
2. Related Literature End-to-End Table Reconstruction leverages VLMs for holistic table understanding, aiming to directly generate structured representations (HTML or JSON) from table images. These models use pre-trained vision-language encoders to jointly process visual and textual cues, enabling the prediction of table structures and content. Approaches like MTLTabNet [27], SmolDocLing [35], SmolVLM [31], and Granite-Vision [55] fall into this category. The key advantage of this paradigm is its ability to unify structure and content prediction without relying on intermediate OCR outputs or handcrafted rules. However, these models often struggle with multilingual scripts, complex layouts, and
noisy scanned documents, particularly when such variations are underrepresented in training data. Decoupled Table Reconstruction involves two key steps: TSR and OCR. TSR models are responsible for identifying cell boundaries and relationships. Object detectionbased TSR methods focus on reconstructing the physical layout of tables by localizing cells using models like Faster R-CNN [48], Mask R-CNN [7], YOLO [47], etc. Transformer-based variants such as DETR [5], TATR [50], TableFormer [34], and TSRFormer [22] have also been equipped for this task. However, such object detectionbased TSR often depends on post-processing for mapping cells to row and column numbers, making them sensitive to detection errors. Later, Im2Seq-based TSR methods dominated the field of TSR, where they directly predict the logical structures (cell mapping) from images using encoder-decoder architectures, outputting formats like HTML or LATEX. Recent approaches adopt compact representations like OTSL [19, 29] to improve inference efficiency and structural consistency. Hybrid TSR methods, including graph-based models like GTE [62] and TGRNet [59], treat table reconstruction as a graph problem. Others combine visual detection with token-level generation, such as EDD [64], local attention-based TSR [28], or use visual and positional cues to refine predictions [12, 44, 45]. The emergence of Im2Seq models has often offered better endto-end consistency by synchronising physical and logical structure predictions in a unified pipeline. Table reconstruction datasets such as PubTabNet [64], FinTabNet [63], PubTables [50], SynthTabNet [33], and TabRecSet [60] provide diverse annotations, with evaluation metrics like TEDS [64] and GriTS [51] assessing both spatial and structural accuracy. Once the structure is extracted, OCR engines are used to recognize the textual content within each cell. Popular OCR engines suitable for this task include Tesseract [49], DocTR [32], EasyOCR [13], and several others [37, 39]. Table-based Question Answering (TabQA) focuses on reasoning over structured table data, typically provided in CSV or HTML format, to answer natural language questions. Recently, LLMs [3, 6, 15] have been fine-tuned or prompted for direct reasoning over tabular inputs, exhibiting strong zero-shot and few-shot capabilities. However, their performance heavily depends on the quality and format of both the table and the prompt. Thus, the choice of representation used to encode tabular data becomes a critical design decision in decoupled TabVQA pipelines. TabVQA, in contrast, integrates visual understanding with question answering, operating directly on table images. Several datasets, such as ComTQA [61], WTQ [40], and FinTabNetQA [18], have been introduced to support this task. As discussed earlier, there are two main approaches to TabVQA [18]: (i) VLM-based models [3, 9, 10, 21, 25, 57] that jointly encode visual and textual information to gen-
erate answers, and (ii) decoupled pipelines that first extract table structure and content via TSR + OCR, then apply LLMs for textual question answering. We build upon this paradigm, where DELTA handles the doubly decoupled table reconstruction, followed by TAR QA, our finetuned LLM, for question answering. Both components of our approach are detailed in the upcoming Section (3).
3. Our Methodology Our methodology has two components: DELTA for generating OTSL from table images, and TAR QA for TabVQA on these sequences extracted from input table images.
3.1. DELTA for Structure Figure (2) presents an overview of DELTA. Given a table image, we perform TSR followed by OCR to extract the table content, where TSR is also divided into two components: physical structure and logical structure. The final output after TSR and OCR is an HTML representation, which is then transformed into an OTSL sequence in a lossless manner using Algorithm (1). Overall, our methodology for DELTA consists of the following key steps: 3.1.1. TSR for Cell Demarcation For TSR, we employ a combination of SPRINT [19] and TATR [52], which together provide a comprehensive understanding of table layouts. We chose SPRINT as it has shown fast, robust, and language-agnostic performance on logical TSR, making it ideal for capturing cell relationships across diverse scripts. SPRINT provides an HTML sequence corresponding to the input table’s logical structure. TATR, also a recent state-of-the-art model, complements this by focusing on physical structure recognition, accurately identifying rows and columns to demarcate individual cells in the table image. The combined output is a structured HTML tag sequence that represents the table, including complex features such as cell merges, row spans, and column spans, with each <td> tag attributed with precise bounding box coordinates. The output of the TSR step with cells highlighted is seen in Figure (2). We provide a more detailed explanation of how TATR and SPRINT work together to generate the final HTML sequence in the supplementary material. 3.1.2. OCR for Content Extraction The TSR output, an HTML tag sequence with bounding box annotations, is used to perform OCR on each cell. We employ EasyOCR [13] for its seamless integration with TSR, GPU compatibility, and fast processing, while remaining modular and easily replaceable. For each <td> tag, the bounding box crops the corresponding cell from the table image, and EasyOCR extracts the text, which is then embedded back into the HTML string. This enriches the structure with content and extends naturally to multilingual tables. The choice of EasyOCR is further validated through
Step 1 (A) TATR (Physical Structure) Decoupled TSR
Step 1 (B) SPRINT (Logical Structure) Rows
Input Image
Columns Physical Structure
<table><tr><td rowspan="2"></td><td colspan="2"></td></tr><tr><td></td><td></td></tr><tr> <td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td> </td><td></td></tr><tr><td></td><td></td><td></td></tr></table>
Logical Structure <fcel>ऋतू व वैशिष्ट्ये <fcel>कालावधी<lcel><nl> <ucel><fcel>पासून<fcel>पर्यंत<nl> <fcel>वसंत: फु लांचा बहर, आल्हाददायक हवा<fcel>मार्च<fcel>मे<nl> <fcel>उन्हाळा: उष्णता व दीर्घ दिवस<fcel>जून<fcel>ऑगस्ट<nl> <fcel>शरद: पानगळ, थंडीची सुरुवात <fcel>सप्टेंबर<fcel>नोव्हेंबर<nl> <fcel>हिवाळा: थंडी व हिमवृष्टी <fcel>डिसेंबर<fcel>फे ब्रुवारी<nl>
Step 3: HTML to OTSL
<table><tr><td rowspan="2">ऋतू व वैशिष्ट्ये</td> <td colspan="2">कालावधी</td></tr> <tr><td>पासून</td><td>पर्यंत</td></tr> <tr><td>वसंत: फु लांचा बहर, आल्हाददायक हवा</td> <td>मार्च</td><td>मे</td></tr> <tr><td>उन्हाळा: उष्णता व दीर्घ दिवस</td> <td>जून</td><td>ऑगस्ट</td></tr> <tr><td>शरद: पानगळ, थंडीची सुरुवात</td> <td>सप्टेंबर</td><td>नोव्हेंबर</td></tr> <tr><td>हिवाळा: थंडी व हिमवृष्टी</td> <td>डिसेंबर</td><td>फे ब्रुवारी</td></tr> </table>
OTSL Sequence
Complete Table Structure
Step 2: OCR
HTML Sequence
Figure 2. DELTA overview: given a table image, the system first performs decoupled TSR (physical structure through TATR and logical structure through SPRINT), followed by OCR to extract table content. The resulting HTML is converted into a compact OTSL sequence.
an ablation study with other OCR models, detailed in the supplementary material. 3.1.3. HTML to OTSL conversion As highlighted in prior work [29], HTML representations are often large and noisy due to their verbose, repetitive tag structures, making them difficult to use directly with LLMs in TabQA tasks. To overcome these limitations, we convert the HTML output into an OTSL sequence, a compact, structured format that efficiently captures both the table’s layout and content. This conversion significantly reduces input length while preserving all necessary information, making it more suitable for LLM-based inference and improving performance. We present Algorithm (1), which outlines the process of converting an HTML sequence into its corresponding OTSL representation in a lossless manner. Figure (3) provides an example of a complex table, showcasing the HTML generated by DELTA, and the resulting OTSL sequence. This comparison demonstrates the compactness and structured clarity of OTSL, which enhances downstream task performance. We refer readers to the original OTSL specification [29] for a detailed understanding of its syntax and token design.
3.2. TAR QA for Question Answering We introduce TAR QA, an LLM fine-tuned for TabQA directly on OTSL sequences. Its key contribution is to reframe table understanding as a text-to-text problem, leveraging OTSL, to eliminate the reliance on table images for down-
ABC D
E
F H
↓ Using Table Reconstruction HTML <html><table><tr><td colspan=3>ABC</td></tr><tr><td rowspan=2>D</td><td>E</td><td>F</td></tr><tr><td> </td><td>H</td></tr></table></html> ↓ Using Algorithm (1) Our Minimized OTSL <otsl><fcel>ABC<lcel><lcel><nl><fcel>D<fcel>E<fcel> F<nl><ucel><ecel><fcel>H<nl></otsl>
Figure 3. Illustration of converting a table grid into HTML and then into the OTSL sequence using Algorithm (1).
stream reasoning tasks. By operating purely on structured OTSL inputs, TAR QA naturally supports decoupled processing and multilingual extension. TAR QA can be seamlessly paired with DELTA, which produces OTSL representations, thereby enabling a complete TabVQA pipeline as illustrated in Figure (4). The choice of OTSL over alternative formats, fine-tuning details, and other related experimentation is described in the upcoming Section (4).
Algorithm 1 Extract OTSL Matrix from HTML string Require: HTML string Ensure: OTSL matrix string 1: Parse HTML, find <table> 2: Compute R (rows) and C (columns) using rowspan, colspan 3: Initialize otsl matrix[R][C] ← "<ecel>" 4: Initialize cell map[R][C] ← 0 5: for each row i do 6: col idx ← 0 7: for each cell in row do 8: while cell map[i][col idx] = 1 do 9: col idx ← col idx + 1 10: end while 11: Extract rowspan, colspan, text 12: Assign "<fcel>" if text exists, else "<ecel>" 13: Fill merged cells: "<lcel>" (left), "<ucel>" (up), "<xcel>" (cross) 14: Update cell map, move to next column 15: end for 16: end for 17: Convert otsl matrix to string with "<nl>" separators 18: return OTSL matrix
Input Image
DELTA OTSL String
Input Query What was the cash flow provided by operating activities in 2008?
<otsl><ecel> <fcel> 2008 <fcel> 2007 <fcel> 2006 <nl> <fcel> Cash_flows_provided_by_(used_for): <ecel> <ecel> <ecel> <nl> <fcel> Operating_activities <fcel> $455.7 <fcel> $381.5 <fcel> $267.5 <nl> <fcel> Investing_activities <fcel> (580.7) <fcel> (380.5) <fcel> (166.0) <nl> <fcel> Financing_activities <fcel> 299.4 <fcel> (24.5) <fcel> (53.6) <nl> <fcel> Net_increase_(decrease)_in_cash_and_cash_equivalents <fcel> 174.4 <fcel> (23.5) <fcel> 47.9 <nl> <fcel> Cash_and_cash_equivalents_beginning_of_year <fcel> 55.5 <fcel> 79.0 <fcel> 31.1 <nl> <fcel> Cash_and_cash_equivalents_end_of_year <fcel> $229.9 <fcel> $55.5 <fcel> $79.0 <nl></otsl>
Answer
TARQA
$455.7
LLM Finetuned on OTSL
Figure 4. TAR QA, an LLM fine-tuned on OTSL sequence, uses output from DELTA along with the query to generate answers.
4. Experiments Now that we have described DELTA for producing OTSL sequences, we proceed to validate the effectiveness of OTSL as the most suitable representation for TabQA (and eventually TabVQA). We conduct a series of experiments comparing OTSL with other common table representations. We first describe the datasets used, followed by a detailed explanation of the experimental setup.
4.1. Datasets We begin by describing the English and non-English tablebased datasets we use in our experimental setup.
Dataset FinTabNet PubTabNet PubTables WTQ FinTabNetQA
Train 11321 -
Val 6942 -
Test 10305 92841 7175 250
Table 1. Datasets used for reconstruction, TabQA and TabVQA
. 4.1.1. English Datasets As DELTA is a framework composed of multiple off-theshelf blocks, we skip training and directly infer and report results on FinTabNet (test), PubTables (test), and PubTabNet (validation, for fair comparison with prior work). For TabQA, we fine-tune LLMs on WTQ with different table representations (HTML, plain text, OTSL) and select the best-performing variant of TAR QA. Finally, we evaluate the full TabVQA pipeline of DELTA followed by TAR QA on FinTabNetQA. Dataset statistics are present in Table (1). 4.1.2. TORQUEDataset We introduce TORQUE, a Hindi benchmark for evaluating both Hindi table reconstruction and Hindi TabVQA. It contains 210 tables : 109 scanned and 101 digital-born, cropped, and sourced from government circulars [30, 46] and spiritual books from MUSTARD [19], with a mix of simple (149) and complex (61) table structures. Figure (5) shows a few sample images from the dataset. The dataset also includes 422 manually verified QA pairs, generated using GPT-oss-20B [1]. For table reconstruction, ChatGPT-4o [36] outputs were manually post-corrected to obtain the exact ground-truth HTML sequences. TORQUE is used to benchmark open-source models and our proposed pipeline, showing that our approach is language-agnostic and outperforms conventional decoupled pipelines and significant VLMs without any Hindi-specific finetuning (zero-shot).
4.2. Generating Table Representations The WTQ training set already contains HTML sequences (ground truth). To create inputs in other formats, we apply format-specific conversions: for OTSL, we use our proposed Algorithm (1) to convert the HTML into a compact sequence; and for plain text, we parse the HTML content row-wise (left to right) and flatten it into a simple text string. Based on the chosen representation format, the corresponding LLM is fine-tuned for the TabQA task.
4.3. Finetuning TAR QA Variants We fine-tuned the Meta-LLaMA-3-8B-Instruct [2] for the question-answering task to generate concise, accurate natural language answers based on a table OTSL sequence and a question. The model was fine-tuned using a cus-
Parameter
Value
Model Optimizer Learning Rate Batch Size Number of Epochs Sequence Length Tokenizer Pad Token Precision Loss
LLaMA-3-8B-Instruct AdamW 2e−5 1 (per GPU) 4 4096 tokens Set to eos token bfloat16 Cross-Entropy
Table 2. Fine-tuning parameter details for TAR QA
act Match (EM) metrics. TAR QA-OTSL shows a gain of around 14 p.p. over TAR QA-HTML on both metrics. Inferred On OTSL Figure 5. Sample Hindi images from the TORQUE dataset
tom instruction-tuned setup, where each example followed a structured prompt template that included an instruction, a serialised table, a natural language question, and the ground truth answer. Table (2) summarises the fine-tuning configuration of TAR QA on the WTQ dataset. The dataset was preprocessed using the HuggingFace AutoTokenizer with padding applied up to a maximum sequence length of 4096 tokens and truncation enabled. Model inference was carried out using greedy decoding. All experiments were conducted using a CUDA-enabled NVIDIA H100 80GB GPU device. The prompt used for fine-tuning is as follows: ### Prompt Used for Finetuning: Given the following table, answer the question in one word or a short phrase. Do not provide an explanation. ### Table:
{OTSL sequence}
### Question: ### Answer:
{User query} {answer}
4.4. Ablation Study for OTSL Format The effectiveness of OTSL for TabVQA is demonstrated through our ablation study (Table (3)). We compare different input formats used to fine-tune as well as infer across both off-the-shelf and fine-tuned LLMs (denoted by the prefix ’TAR QA’ followed by the format used for finetuning). We show that fine-tuning using OTSL led to the best scores. For each format, we finetune using the same configuration as detailed in Section (4.3) and report both ANLS and Ex-
HTML Plain Text
LLM Model [2] Off the Shelf TAR QA-OTSL Off the Shelf TAR QA-HTML Off the Shelf TAR QA-Plain
ANLS 25.4 56.5 11.0 42.3 29.8 52.8
EM 16.9 54.0 10.3 39.9 27.8 50.2
Table 3. Comparing the impact of fine-tuning on different table representations on the WTQ test set with best scores highlighted.
5. Results and Discussions On Table Reconstruction: We evaluate the effectiveness of our approach, DELTA, across multiple table reconstruction benchmarks. Specifically, DELTA generates an HTML tag sequence, which is subsequently converted into OTSL, capturing both structure and content. Table (4) presents a comparison of DELTA with state-of-the-art methods, grouped into end-to-end VLMs, conventional decoupled approaches, and our proposed doubly decoupled framework. The evaluation spans FinTabNet, PubTabNet, PubTables, and TORQUE datasets using both TEDS-S and TEDS metrics. Results show that DELTA achieves competitive structural alignment, as reflected in consistently strong TEDS-S scores across all benchmarks, while also highlighting the advantages of our doubly decoupled design. While DELTA outperforms most VLMs in TEDS, it does not surpass MTL-TabNet, which lacks generalizability, or methods like VAST [12] and TableFormer [34] that exploit PDF parsing for near-perfect text fidelity. Our reliance on OCR introduces the main bottleneck. Although DELTA’s modularity allows easy replacement of the OCR component to boost TEDS scores. As shown in the supplementary material, OCR ablation demonstrates that ground-truth–mapped content achieves near-perfect TEDS, confirming that re-
Type
FinTabNet
Dataset
PubTabNet
PubTables
TORQUE
TEDS-S TEDS TEDS-S TEDS TEDS-S TEDS TEDS-S TEDS
End-to-end VLMs
SmolVLM[31] SmolDocling [35] Granite Vision [55] MTL-TabNet [26]
81.0 98.8
18.0 52.0 54.0 -
97.9
96.7
65.0 96.7
32.0 88.0 70.0 96.2
0.00 0.05 -
0.05 4.50 -
TSR + OCR
EDD [64] LGPMA [44]
90.6 -
-
89.9 96.7
88.3 94.6
-
-
-
-
TSR + PDF Parsing
TableFormer*[34] VAST*[11]
96.8 98.6
89.0 98.2
96.7 97.2
93.6 96.0
-
84.0 -
-
-
98.2
55.9
97.5
54.4
97.7
54.8
85.4
63.6
Doubly Decoupled DELTA(Ours)
Table 4. Comparison of TEDS-S and TEDS scores for different table reconstruction methods across popular benchmarks, along with TORQUE. Approaches marked by * use PDF-parsing for content extraction. The best and second-best results are highlighted.
Baseline UDOP [54] Pix2struct [20] DocOwl [10] Kosmos [41] Donut [17] TAPAS [8] Mistral [14] SOLAR [16] TAR QA
Fine-tuned on
Type
Model
FinTabNetQA
HTML 47.2 39.8 26.9 32.4 18.8 46.4 42.3
BLIP-2 [21] CogVLM-1k [57] CogAgent-VQA [9] Open-source SPHINX-v1-1k [23] LLaVA-1.5 [24] QWEN-VL-Chat [3] QWEN-VL [3]
0.4 4.8 22.8 3.2 0.8 29.6 34.0
SPHINX-MoE-1k [18] Closed-source SPHINX-v2-1k [18] SPHINX-MoE [18]
36.0 31.2 2.8
OTSL 29.9 12.3 56.5
Table 5. Comparison of ANLS scores on the WTQ test set. The best and second-best results are highlighted for clarity.
Ours Skyline
construction itself is reliable and OCR is the only limitation. Overall, DELTA shows strong structural understanding and achieves solid performance on TORQUE, even with challenging images, while VLM-based methods such as SmolVLM [31] and SmolDocling [35] remain difficult to extend to multilingual data. On TabQA and TabVQA: In Table (5), we evaluate the impact of structured outputs on the downstream TabQA task. Specifically, we compare TAR QA-OTSL and TAR QA-HTML, both of which take DELTA’s corresponding reconstructed outputs. To ensure consistency, we report HTML baseline results from prior work, all fine-tuned on the WTQ dataset. For OTSL baselines, we strictly finetune LLMs using the same setup as TAR QA. The results clearly show that OTSL-based inputs achieve significantly higher ANLS scores, outperforming the strongest HTML baseline by 9.3 p.p.. We evaluate the performance of our integrated pipeline, DELTA + TAR QA, on the FinTabNetQA dataset [18] for the TabVQA task. As shown in Table
DELTA + TAR QA-HTML DELTA + TAR QA-OTSL GT-HTML + TARQA-HTML GT-OTSL + TARQA-OTSL
29.2 45.2 51.2 69.2
Table 6. Comparison of relieved accuracy scores for TabVQA on FinTabNetQA. The results include many baselines alongside our method. Additionally, for skyline, we provide Ground Truth (GT) HTML and OTSL inputs to the corresponding TAR QA variant. The best and second-best scores are highlighted.
(6), our approach achieves higher relieved accuracy than all other baselines. We adopt relieved accuracy as the evaluation metric because it accounts for semantically equivalent answers that may differ in surface form (e.g., numerical formatting, currency symbols, or minor textual variations). The skylines (with ground-truth sequences) outperform all other methods. Notably, the OTSL-based skyline achieves the highest score, indicating that more accurate OTSL-based table reconstruction (higher TEDS) directly translates to stronger downstream performance in TabVQA.
Approach VLMs (End-to-End)
DELTA + LLM
Ours Skyline
VLM / LLM Qwen-2.5-VL Instruct [4] InternVL-3 5 [58] Paligemma-2 [53] SmolVLM-Instruct [31] Qwen-2.5-Hindi [56] Mistral [14] HiTQA-mBart [38] HiTQA-M2M [38] mBERT [42] TAPAS [8] DELTA(HTML) + TARQA-HTML DELTA(OTSL) + TARQA-OTSL GT HTML + TARQA-HTML GT OTSL + TARQA-OTSL
Model Parameters 7B 8B 3B 3B 14B 7B 611M 484M 179M 110M 8B 8B 8B 8B
Relieved-Acc. 47.40 17.54 10.20 14.45 21.30 6.64 11.22 5.73 0.47 4.50 12.80 27.49 28.44 63.51
EM 46.20 16.35 07.10 00.95 20.40 6.16 1.43 0.24 0.24 4.50 12.09 23.93 28.20 60.43
ANLS 66.40 19.19 13.90 14.45 26.50 9.00 1.91 0.24 0.95 6.60 16.11 36.49 31.75 76.30
Table 7. Comparative results on TORQUE for the TabVQA task. We also report our results with both HTML and OTSL variants of TAR QA, along with ground-truth inputs to TAR QA as the skyline. The best and second-best results are highlighted for clarity.
On Multilingual TabVQA: To showcase the multilingual capability of our framework, we report results on the TORQUE dataset using different categories of models. Specifically, we evaluate both end-to-end VLMs and several LLMs, where the latter take as input the outputs of DELTA along with the question to be asked. Table (7) presents the results, demonstrating that our approach consistently outperforms all VLMs by more than 10 p.p. except Qwen-2.5 VL Instruct [4]. Qwen achieves stronger performance only because its pre-training corpus includes Hindi data, which gives it an inherent advantage. For LLMs with Hindi capability, none can surpass our approach. This improvement is notable as DELTA achieves zero-shot performance on TORQUE, with no components trained on Hindi. Furthermore, the skylines (obtained by feeding the ground-truth sequences to TAR QA) achieve substantially higher performance than Qwen [4] and all other VLMs, highlighting that a decoupled module is considerably more effective than end-to-end VLMs. This also indicates that if the inputs to TAR QA are of higher quality (i.e., better OCR), as in the case of ground-truth HTML, the downstream performance can be significantly benefited. Qualitative examples for all tasks are included in the supplementary material.
6. Conclusion In summary, we present a comprehensive pipeline for table understanding and reasoning. We begin with DELTA, a doubly decoupled table reconstruction framework that separates structure recognition from OCR and disentangles physical and logical TSR, producing a compact OTSL representation. DELTA achieves high TEDS-S scores and surpasses recent VLM-based approaches. We further introduce a lossless HTML-to-OTSL conversion for inter-
operability and TAR QA, an LLM fine-tuned on OTSL for TabVQA, which achieves strong results on WTQ and FinTabNetQA. Finally, we showcase the performance of DELTA and DELTA + TAR QA on the curated Hindi benchmark TORQUE, where our zero-shot approach significantly outperforms other models, including LLMs with inherent Hindi understanding. Collectively, these contributions define a flexible and extensible framework for highfidelity multilingual table reconstruction and TabVQA.
7. Limitations and Future Work While DELTA demonstrates good TEDS-S scores, the overall TEDS scores can still be improved. This is due to the current OCR support in the pipeline, which introduces errors that not only affect the TEDS score but can also impact downstream TabVQA performance. Improving OCR quality will push TEDS closer to 100%. This, in turn, would enable DELTA + TAR QA to consistently achieve scores close to skyline performance. In this way, we will distil the challenges of black-box VLMs into a more well-defined formulation, making Multilingual TabVQA both transparent and debuggable. Our experiments are limited to English and Hindi benchmarks, but the modular design and OCR support will enable extension to other languages. Future work will focus on enhancing reasoning for complex queries, such as abstractive QA, thereby broadening the scope and impact of our approach.
8. Acknowledgement We acknowledge BharatGen and the Indian Institute of Technology Bombay for providing resources and support for the project. Jahanvi Rajput’s PhD is supported by the Prime Minister’s Research Fellowship (PMRF).
References [1] Sandhini Agarwal, Lama Ahmad, Jason Ai, Sam Altman, Andy Applebaum, Edwin Arbus, Rahul K Arora, Yu Bai, Bowen Baker, Haiming Bao, et al. gpt-oss-120b & gpt-oss20b model card. arXiv preprint arXiv:2508.10925, 2025. 5 [2] AI@Meta. Llama 3 model card. 2024. 5, 6 [3] Jinze Bai, Shuai Bai, Shusheng Yang, Shijie Wang, Sinan Tan, Peng Wang, Junyang Lin, Chang Zhou, and Jingren Zhou. Qwen-vl: A frontier large vision-language model with versatile abilities. arXiv preprint arXiv:2308.12966, 2023. 3, 7 [4] Shuai Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, Sibo Song, Kai Dang, Peng Wang, Shijie Wang, Jun Tang, et al. Qwen2. 5-vl technical report. arXiv preprint arXiv:2502.13923, 2025. 8 [5] Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and Sergey Zagoruyko. End-toend object detection with transformers. In European conference on computer vision, pages 213–229. Springer, 2020. 3, 2 [6] Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al. The llama 3 herd of models. arXiv preprint arXiv:2407.21783, 2024. 3 [7] Kaiming He, Georgia Gkioxari, Piotr Dollár, and Ross B. Girshick. Mask R-CNN. CoRR, abs/1703.06870, 2017. 3 [8] Johan Holmgren, Paul Davidsson, Jan A Persson, and Linda Ramstedt. Tapas: A multi-agent-based model for simulation of transport chains. Simulation Modelling Practice and Theory, 23:1–18, 2012. 7, 8 [9] Wenyi Hong, Weihan Wang, Qingsong Lv, Jiazheng Xu, Wenmeng Yu, Junhui Ji, Yan Wang, Zihan Wang, Yuxiao Dong, Ming Ding, et al. Cogagent: A visual language model for gui agents. arXiv preprint arXiv:2312.08914, 2023. 3, 7 [10] Anwen Hu, Haiyang Xu, Jiabo Ye, Ming Yan, Liang Zhang, Bo Zhang, Chen Li, Ji Zhang, Qin Jin, Fei Huang, and Jingren Zhou. mplug-docowl 1.5: Unified structure learning for ocr-free document understanding. arXiv preprint arXiv:2403.12895, 2024. 3, 7 [11] Yongshuai Huang, Ning Lu, Dapeng Chen, Yibo Li, Zecheng Xie, Shenggao Zhu, Liangcai Gao, and Wei Peng. Improving table structure recognition with visual-alignment sequential coordinate modeling. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 11134–11143, 2023. 7 [12] Yongshuai Huang, Ning Lu, Dapeng Chen, Yibo Li, Zecheng Xie, Shenggao Zhu, Liangcai Gao, and Wei Peng. Improving table structure recognition with visual-alignment sequential coordinate modeling. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 11134–11143, 2023. 3, 6 [13] JaidedAI. Easyocr: Ready-to-use ocr with 80+ supported languages and all popular writing scripts. https :/ / github.com/JaidedAI/EasyOCR, 2020. Accessed: 2025-04-20. 3
[14] Albert Q. Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, Lélio Renard Lavaud, Marie-Anne Lachaux, Pierre Stock, Teven Le Scao, Thibaut Lavril, Thomas Wang, Timothée Lacroix, and William El Sayed. Mistral 7b: Efficient high-performance open weights. arXiv preprint, arXiv:2310.06825, 2023. Accessed: 2025-09-13. 7, 8 [15] Albert Q Jiang, Alexandre Sablayrolles, Antoine Roux, Arthur Mensch, Blanche Savary, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Emma Bou Hanna, Florian Bressand, et al. Mixtral of experts. arXiv preprint arXiv:2401.04088, 2024. 3 [16] Dahyun Kim, Chanjun Park, Sanghoon Kim, Wonsung Lee, Wonho Song, Yunsu Kim, Hyeonwoo Kim, Yungi Kim, Hyeonju Lee, Jihoo Kim, Changbae Ahn, Seonghoon Yang, Sukyung Lee, Hyunbyung Park, Gyoungjin Gim, Mikyoung Cha, Hwalsuk Lee, and Sunghun Kim. Solar 10.7b: Scaling large language models with simple yet effective depth up-scaling, 2023. 7 [17] Geewook Kim, Teakgyu Hong, Moonbin Yim, Jeongyeon Nam, Jinyoung Park, Jinyeong Yim, Wonseok Hwang, Sangdoo Yun, Dongyoon Han, and Seunghyun Park. Ocrfree document understanding transformer. arXiv preprint arXiv:2111.15664, 2021. 7 [18] Yoonsik Kim, Moonbin Yim, and Ka Yeon Song. Tablevqabench: A visual question answering benchmark on multiple table domains. arXiv preprint arXiv:2404.19205, 2024. 3, 7 [19] Dhruv Kudale, Badri Vishal Kasuba, Venkatapathy Subramanian, Parag Chaudhuri, and Ganesh Ramakrishnan. Sprint: Script-agnostic structure recognition in tables. arXiv preprint arXiv:2503.11932, 2025. 3, 5, 1 [20] Kenton Lee, Mandar Joshi, Iulia Turc, Hexiang Hu, Fangyu Liu, Julian Eisenschlos, Urvashi Khandelwal, Peter Shaw, Ming-Wei Chang, and Kristina Toutanova. Pix2struct: Screenshot parsing as pretraining for visual language understanding. arXiv preprint arXiv:2210.03347, 2022. 7 [21] Junnan Li, Dongxu Li, Silvio Savarese, and Steven Hoi. Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models. arXiv preprint arXiv:2301.12597, 2023. 3, 7 [22] Weihong Lin, Zheng Sun, Chixiang Ma, Mingze Li, Jiawei Wang, Lei Sun, and Qiang Huo. Tsrformer: Table structure recognition with transformers. In Proceedings of the 30th ACM International Conference on Multimedia, pages 6473– 6482, 2022. 3 [23] Ziyi Lin, Chris Liu, Renrui Zhang, Peng Gao, Longtian Qiu, Han Xiao, Han Qiu, Chen Lin, Wenqi Shao, Keqin Chen, et al. Sphinx: The joint mixing of weights, tasks, and visual embeddings for multi-modal large language models. arXiv preprint arXiv:2311.07575, 2023. 7 [24] Haotian Liu, Chunyuan Li, Yuheng Li, and Yong Jae Lee. Improved baselines with visual instruction tuning. arXiv preprint arXiv:2310.03744, 2023. 7 [25] Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning. In NeurIPS, 2023. 3
[26] Nam Tuan Ly and Atsuhiro Takasu. An end-to-end multitask learning model for image-based table recognition. arXiv preprint arXiv:2303.08648, 2023. 7 [27] Nam Tuan Ly and Atsuhiro Takasu. An end-to-end multitask learning model for image-based table recognition. arXiv preprint arXiv:2303.08648, 2023. 2 [28] Nam Tuan Ly and Atsuhiro Takasu. An end-to-end local attention based model for table recognition. In Document Analysis and Recognition - ICDAR 2023, pages 20–36, Cham, 2023. Springer Nature Switzerland. 3 [29] Maksym Lysak, Ahmed Nassar, Nikolaos Livathinos, Christoph Auer, and Peter Staar. Optimized table tokenization for table structure recognition. In Document Analysis and Recognition - ICDAR 2023, pages 37–50, Cham, 2023. Springer Nature Switzerland. 2, 3, 4 [30] Madhya Pradesh High Court. Circulars and orders, 2025. Accessed: 2025-03-25. 5 [31] Andrés Marafioti, Orr Zohar, Miquel Farré, Merve Noyan, Elie Bakouch, Pedro Cuenca, Cyril Zakka, Loubna Ben Allal, Anton Lozhkov, Nouamane Tazi, et al. Smolvlm: Redefining small and efficient multimodal models. arXiv preprint arXiv:2504.05299, 2025. 2, 7, 8 [32] Mindee. doctr: Document text recognition. https:// github.com/mindee/doctr, 2021. 3 [33] Ahmed Nassar, Nikolaos Livathinos, Maksym Lysak, and Peter Staar. Tableformer: Table structure understanding with transformers. arXiv preprint arXiv:2203.01017, 2022. 3 [34] Ahmed Nassar, Nikolaos Livathinos, Maksym Lysak, and Peter Staar. Tableformer: Table structure understanding with transformers. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 4614– 4623, 2022. 3, 6, 7, 1 [35] Ahmed Nassar, Andres Marafioti, Matteo Omenetti, Maksym Lysak, Nikolaos Livathinos, Christoph Auer, Lucas Morin, Rafael Teixeira de Lima, Yusik Kim, A. Said Gurbuz, Michele Dolfi, Miquel Farré, and Peter W. J. Staar. Smoldocling: An ultra-compact vision-language model for end-to-end multi-modal document conversion. arXiv preprint arXiv:2503.11576, 2025. 2, 7 [36] OpenAI, Josh Achiam, Steven Adler, Sandhini Agarwal, and Lama Ahmad et al. Gpt-4 technical report, 2024. 5 [37] PaddlePaddle. Paddleocr: A rich, practical and productionready ocr library based on paddlepaddle. https : //github.com/PaddlePaddle/PaddleOCR, 2020. Accessed: 2025-04-20. 3 [38] Vaishali Pal, Evangelos Kanoulas, Andrew Yates, and Maarten de Rijke. Table question answering for low-resourced indic languages. arXiv preprint arXiv:2410.03576, 2024. 8 [39] Vik Paruchuri. Surya: Ocr, layout analysis, reading order, and table recognition in 90+ languages. https : //github.com/VikParuchuri/surya, 2023. Accessed: 2025-04-20. 3 [40] Panupong Pasupat and Percy Liang. Compositional semantic parsing on semi-structured tables. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), pages
1470–1480, Beijing, China, 2015. Association for Computational Linguistics. 3 [41] Zhiliang Peng, Wenhui Wang, Li Dong, Yaru Hao, Shaohan Huang, Shuming Ma, and Furu Wei. Kosmos-2: Grounding multimodal large language models to the world. arXiv preprint arXiv:2306.14824, 2023. 7 [42] Telmo Pires, Eva Schlinger, and Dan Garrette. How multilingual is multilingual bert? arXiv preprint arXiv:1906.01502, 2019. 8 [43] Devashish Prasad, Ayan Gadpal, Kshitij Kapadni, Manish Visave, and Kavita Sultanpure. Cascadetabnet: An approach for end to end table detection and structure recognition from image-based documents, 2020. 1 [44] Liang Qiao, Zaisheng Li, Zhanzhan Cheng, Peng Zhang, Shiliang Pu, Yi Niu, Wenqi Ren, Wenming Tan, and Fei Wu. Lgpma: Complicated table structure recognition with local and global pyramid mask alignment. In International conference on document analysis and recognition, pages 99–114. Springer, 2021. 3, 7, 1 [45] Sachin Raja, Ajoy Mondal, and CV Jawahar. Table structure recognition using top-down and bottom-up cues. In European conference on computer vision, pages 70–86. Springer, 2020. 3 [46] Rajbhasha Department. Orders and circulars, 2025. Accessed: 2025-03-25. 5 [47] Joseph Redmon, Santosh Kumar Divvala, Ross B. Girshick, and Ali Farhadi. You only look once: Unified, real-time object detection. CoRR, abs/1506.02640, 2015. 3 [48] Shaoqing Ren, Kaiming He, Ross B. Girshick, and Jian Sun. Faster R-CNN: towards real-time object detection with region proposal networks. CoRR, abs/1506.01497, 2015. 3 [49] R. Smith. An overview of the tesseract ocr engine. In Ninth International Conference on Document Analysis and Recognition (ICDAR 2007), pages 629–633, 2007. 3 [50] Brandon Smock, Rohith Pesala, and Robin Abraham. Pubtables-1m: Towards comprehensive table extraction from unstructured documents. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 4634–4642, 2022. 3, 1 [51] Brandon Smock, Rohith Pesala, and Robin Abraham. Grits: Grid table similarity metric for table structure recognition. In International Conference on Document Analysis and Recognition, pages 535–549. Springer, 2023. 3 [52] Brandon Smock, Rohith Pesala, and Robin Abraham. Aligning benchmark datasets for table structure recognition. arXiv preprint arXiv:2303.00716, 2023. 3 [53] Andreas Steiner, André Susano Pinto, Michael Tschannen, Daniel Keysers, Xiao Wang, Yonatan Bitton, Alexey Gritsenko, Matthias Minderer, Anthony Sherbondy, Shangbang Long, et al. Paligemma 2: A family of versatile vlms for transfer. arXiv preprint arXiv:2412.03555, 2024. 8 [54] Zineng Tang, Ziyi Yang, Guoxin Wang, Yuwei Fang, Yang Liu, Chenguang Zhu, Michael Zeng, Cha Zhang, and Mohit Bansal. Unifying vision, text, and layout for universal document processing. arXiv preprint arXiv:2212.02623, 2022. 7
[55] Granite Vision Team, Leonid Karlinsky, Assaf Arbelle, Abraham Daniels, Ahmed Nassar, Amit Alfassi, Bo Wu, Eli Schwartz, Dhiraj Joshi, Jovana Kondic, et al. Granite vision: a lightweight, open-source multimodal model for enterprise intelligence. arXiv preprint arXiv:2502.09927, 2025. 2, 7 [56] Traversaal.ai and 1-800-LLMs. Qwen-2.5-14b-hindi. https://huggingface.co/large-traversaal/ Qwen-2.5-14B-Hindi, 2024. Accessed: 2025-09-13. 8 [57] Weihan Wang, Qingsong Lv, Wenmeng Yu, Wenyi Hong, Ji Qi, Yan Wang, Junhui Ji, Zhuoyi Yang, Lei Zhao, Xixuan Song, et al. Cogvlm: Visual expert for pretrained language models. arXiv preprint arXiv:2311.03079, 2023. 3, 7 [58] Weiyun Wang, Zhangwei Gao, Lixin Gu, Hengjun Pu, Long Cui, Xingguang Wei, Zhaoyang Liu, Linglin Jing, Shenglong Ye, Jie Shao, et al. Internvl3. 5: Advancing open-source multimodal models in versatility, reasoning, and efficiency. arXiv preprint arXiv:2508.18265, 2025. 8 [59] Wenyuan Xue, Baosheng Yu, Wen Wang, Dacheng Tao, and Qingyong Li. Tgrnet: A table graph reconstruction network for table structure recognition. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 1295–1304, 2021. 3 [60] Fan Yang, Lei Hu, Xinwu Liu, Shuangping Huang, and Zhenghui Gu. A large-scale dataset for end-to-end table recognition in the wild. Scientific Data, 10(1):110, 2023. 3 [61] Weichao Zhao, Hao Feng, Qi Liu, Jingqun Tang, Binghong Wu, Lei Liao, Shu Wei, Yongjie Ye, Hao Liu, Wengang Zhou, Houqiang Li, and Can Huang. Tabpedia: Towards comprehensive visual table understanding with concept synergy. In Advances in Neural Information Processing Systems, 2024. 3 [62] Xinyi Zheng, Doug Burdick, Lucian Popa, Xu Zhong, and Nancy Xin Ru Wang. Global table extractor (gte): A framework for joint table identification and cell structure recognition using visual context, 2020. 3, 1 [63] Xinyi Zheng, Doug Burdick, Lucian Popa, Peter Zhong, and Nancy Xin Ru Wang. Global table extractor (gte): A framework for joint table identification and cell structure recognition using visual context. Winter Conference for Applications in Computer Vision (WACV), 2021. 3 [64] Xu Zhong, Elaheh ShafieiBavani, and Antonio Jimeno Yepes. Image-based table recognition: data, model, and evaluation. In European conference on computer vision, pages 564–580. Springer, 2020. 3, 7
Tables Decoded: DELTA for Structure, TAR QA for Understanding Supplementary Material 9. Symbols and abbreviations
11. DELTA in detail
Table (8) presents the terminology used in the proposed approaches, along with their full forms and the corresponding tasks in which they are applied. Table (9) lists all the abbreviations used throughout the paper, providing readers with an easy reference to understand the terminology better.
Our proposed framework, DELTA, tackles the longstanding challenge of disentangling physical and logical structures in table structure recognition. Unlike traditional approaches, where geometric layout (rows, columns, cell boundaries) and logical layout (cell arrangement, spans, header associations) are tightly coupled, DELTA predicts them independently and then combines their outputs in a principled manner. Specifically, we employ SPRINT for logical structure prediction, which generates compact OTSL/HTML sequences and offers an ideal balance of speed, accuracy, and language independence, making it robust across multilingual and noisy documents. For the physical structure, we use TATR, a DETR-based model pretrained on large-scale datasets, that leverages only row and column predictions to ensure clean grid alignment. These two components are integrated to reconstruct complete HTML tables with explicit bounding boxes, row spans, and column spans, making the system modular, interpretable, and extensible. Beyond structure prediction, we also examine the role of OCR for content recognition and conduct comprehensive ablations to validate and justify our design choices.
10. Motivation for Doubly Decoupled Approach Table Reconstruction approaches can be divided into: • End-to-end VLMs In conventional table understanding pipelines, physical structure, logical structure, and content recognition (OCR) are often bundled together into a monolithic framework. We refer to this as the VLMs paradigm, where all three aspects: cell boundaries, spanning relations, and textual extraction are jointly modeled. While such end-to-end systems simplify design, they are typically hard to interpret, debug, and adapt across domains and languages. • Conventional Decoupling: Recent approaches such as CascadeTabNet [43], TATR [50], GTE [62], TableFormer [34], and LGPMA [44] attempt to decouple structure recognition from content recognition. However, within the structure recognition stage, the physical structure (rows, columns, cell boundaries) and the logical structure (spanning cells, header associations, merged cells) remain entangled. This coupling often limits flexibility and makes it challenging to localise errors, as mispredictions in geometry and semantics influence each other. • Our Doubly-Decoupled Framework: (DELTA) We introduce a finer decomposition by separating physical and logical structure recognition into independent stages. In the structure recognition stage, the physical structure (cell boundaries) and the logical structure (cell arrangements) should be loosely coupled. The physical structure is inherently tied to image coordinates, whereas the logical structure only requires predicting the arrangement and relationships among cells. By decoupling the two, we can keep the logical layer language-agnostic, while isolating coordinate-dependent errors in the physical layer. This separation improves flexibility, simplifies debugging, and allows each component to be strengthened independently. Specifically, TATR models the physical layout, while SPRINT captures logical relations. Their outputs are then combined into a complete table structure, which is subsequently passed to OCR for content extraction. This double decoupling offers greater control and modularity.
11.1. SPRINT for Logical Structure SPRINT is an image-to-sequence model that employs a Global Context Attention (GCA)-based encoder and a transformer-based decoder to generate compact sequence representations (OTSL/HTML) of logical table structures. We adopt SPRINT for logical structure prediction because it achieves an ideal balance of speed, accuracy, and language independence. Unlike methods that rely heavily on OCR or language-specific cues, SPRINT focuses solely on the structural layout, making it inherently robust across multilingual and noisy document settings. This design aligns perfectly with our objective of decoupling physical and logical structure, as SPRINT cleanly predicts the cell arrangement without being confounded by text semantics. Moreover, since it has already demonstrated state-of-the-art performance on table structure recognition benchmarks, it provides a reliable backbone for our framework. We report ablations reported on SPRINT to demonstrate these strengths in Table (10). For further implementation details, we refer the reader to the original SPRINT [19] paper.
11.2. TATR for Physical Structure To extract the physical structure, we use the TATR [50] V1.1 model pre-trained on FinTabNet, PubTabNet, and
Abbreviation
Description
Task Used For
DELTA
Doubly dEcoupled tabLe reconsTruction Approach (a proposed approach)
Table Reconstruction, measured by TEDS-Structure and TEDS Scores
TAR QA
TAble structuRe-aware Question Answering (a fine-tuned LLM on OTSL sequences)
TabQA Table-based Question Answering
TORQUE
Table Oriented Reconstruction and Questionanswering Upon dEvanagari (curated benchmark)
Hindi Table Reconstruction Hindi TabVQA
DELTA converts Table Image to OTSL TAR QA answers Questions with OTSL
Decoupled VQA task
TAR QA-OTSL
TAR QA Fine-tuned on OTSL sequences.
TabVQA
TAR QA-HTML
TAR QA Fine-tuned on HTML sequences.
TabVQA
GT OTSL + TAR QA-OTSL
Ground Truth OTSL given to TAR QA-OTSL
TabVQA
GT HTML + TAR QA-HTML
Ground Truth OTSL given to TAR QA-OTSL
TabVQA
DELTA TAR QA
+
Table 8. Abbreviations and Their Descriptions
Abbreviation ANLS EM GT LLMs OCR OTSL p.p. SPRINT TabQA TabVQA TATR TEDS TSR VLMs WTQ
Description Average Normalized Levenshtein Similarity Exact Match Ground Truth Large Language Models Optical Character Recognition Optimized Table Structure Language percentage point Script-agnostic Structure Recognition in Tables Table Question Answering Table Visual Question Answering Table Transformer Tree Edit Distance -based Similarity Table Structure Recoginition Vision Language Models WikiTableQuestions
Table 9. General abbreviations used in the paper.
PubTables-1M. TATR, built on DETR [5], predicts six classes, of which we only leverage table-row and table-column to estimate the rows and columns. For inference, we set the detection threshold to 0.25 and apply non-maximum suppression (NMS) with an IoU threshold of 0.25 on table-row predictions to minimize overlap and
improve consistency. The resulting values are then aligned with the output sequence predicted by SPRINT, ensuring coherence between physical and logical structures.
11.3. TATR and SPRINT for Complete TSR This step is responsible for integrating the logical structure (tag sequence predicted by SPRINT) with the physical structure (list of bounding boxes corresponding to detected rows and columns) to produce a final HTML representation of the table. Each <td> element in the output is annotated with its bounding box coordinates, as well as rowspan and colspan attributes whenever merged cells are detected. While row and column bounding boxes intersect to form candidate cells, the crucial constraint is that there exists a one-to-one mapping between each logical cell predicted by SPRINT and its corresponding physical bounding box. The algorithm enforces this alignment to guarantee that both spatial positioning and spanning attributes are preserved. Formally, as seen in Algorithm (2), it takes as input an OTSL matrix M (generated by SPRINT, note that it can be converted to HTML in a lossless manner, but since SPRINT directly gives an OTSL string, we leverage that initially) and a set of bounding boxes Cells (derived from TATR). The OTSL matrix encodes the table layout, where each entry specifies whether a position corresponds to a cell (C), a new row marker (N), or is empty. The process begins by initializing an empty HTML string H. For each entry (i, j) in M : • If it corresponds to a cell, the bounding box cell is re-
Test
PubTabNet
FinTabNet
PubTables-1M
Training
SPRINT Config
PubTabNet PubTabNet All All FinTabNet FinTabNet All FinTabNet PubTables-1M All All All
*Layers: 3, Shape: 32*128 Layers: 4, Shape: 32*128 Layers: 6, Shape: 32*128 Layers: 6, Shape: 128*128 Layers: 6, Shape: 32*32 Layers: 6, Shape: 32*128 Layers: 6, Shape: 128*128 Layers: 6, Shape: 128*128 Layers: 6, Shape: 32*128 Layers: 8, Shape: 32*128 Layers: 6, Shape: 32*128 Layers: 6, Shape: 128*128
TEDS-S Simple 97.91 98.12 98.11 98.00 98.39 98.30 98.31 98.35 98.19 98.88 98.87 98.92
TEDS-S Complex 91.17 92.84 92.98 93.32 94.57 97.46 97.73 97.74 92.69 93.34 94.80 96.54
TEDS-S Overall 94.61 95.53 95.60 95.71 96.41 97.88 98.01 98.03 95.50 96.00 96.75 97.68
Table 10. Results on different test sets for the SPRINT component of DELTA trained on various datasets. The training set of ’All’ refers to the combined training dataset of all three datasets. The config is dictated by two parameters, mainly the number of decoder layers and the shape (dimensions) of the input image, which is resized in the preprocessing stage. * indicates that the maximum permissible length of prediction was set to 192 for that experiment, and the length was set to 224 otherwise. All the results are reported on the canonical validation set of PubTabNet [29] and canonical test sets of FinTabNet [29] and PubTables-1M [29]
trieved from Cells. The function get cell spans computes the extent of row and column spans by checking consecutive overlaps in the SPRINT output. • If spans are present, the bounding box is extended accordingly, and an HTML td tag with the appropriate rowspan and/or colspan attributes is generated and appended to H. • If no spans are present, a simple td tag with its bounding box is appended. In both cases, the processed bounding box is stored in the bbox attribute. Whenever an entry is marked as N, the algorithm closes the current row and begins a new one. After all entries are processed, the final HTML string is completed. The output consists of the structured HTML string H, which encodes the table with explicit row and column spans that maintain the bounding boxes associated with each logical cell. This design ensures that even complex tables with merged rows/columns are reconstructed faithfully, while retaining both logical order (from SPRINT) and spatial grounding (from TATR).
11.4. OCR Ablations The TSR module of DELTA achieves highly reliable structure predictions, with TEDS-Structure scores exceeding 95% on standard datasets. However, the overall TEDS score is hampered by OCR quality, making OCR the primary performance bottleneck. OCR errors arise from noise, complex layouts, slanted text, and special symbols. Since OCR follows TSR in our pipeline, its choice is critical. To assess this impact, we compare two widely used engines: Tesseract [49] and EasyOCR [13]. Tesseract provides broad multilingual support, modularity, and ease of integration but suffers from lower accuracy on noisy data, lacks GPU ac-
celeration, and is slow at inference. In contrast, EasyOCR is GPU-compatible, nearly three times faster, and consistently more accurate. It integrates seamlessly with detection and structure recognition modules, offers greater control over outputs, and is modular enough to be replaced with CRNN-based or fine-tuned models. Empirically, EasyOCR achieves consistently stronger results (Table 11), improving TEDS scores of almost all the datasets. The weighted average increases by 12.45 p.p. across FinTabNet, PubTabNet, FinTabNetQA, and TORQUE, which also translates into higher TabVQA accuracy. The slight drop in performance on PubTabNet stems from its relatively clean images with few OCR errors, rather than a limitation of EasyOCR. In this setting, Tesseract and EasyOCR perform nearly identically, with negligible differences in TEDS scores. In contrast, PubTables-1M poses a greater challenge: its large scale makes Tesseract impractically slow for experiments, whereas EasyOCR strikes a balance between speed and accuracy, achieving a reasonable TEDS score of 54.8. Table (12) highlights the latency comparison, underscoring EasyOCR’s superior efficiency. Accordingly, EasyOCR is used as the default OCR module in our DELTA pipeline, though it can be readily replaced with a stronger alternative. To isolate OCR as the primary performance bottleneck, we prepared Ground Truth (GT) mapped predictions, where the content of each predicted HTML cell was replaced with the corresponding ground-truth content while preserving the predicted structure. Care was taken to ensure accurate row-wise fidelity and cell mapping. This setup is equivalent to DELTA predictions followed by perfect OCR. As shown by the resulting TEDS scores (Table 11) above 90% in most cases. This shows that the content errors are almost entirely
Algorithm 2 Converting OTSL Matrix (logical structure) and cell boxes (physical structure) into HTML Sequence. OTSL matrix M of size R × C, list of cell bounding boxes Cells 2: Output: HTML table string H, list of structured cells S 3: H ← “<table><tbody>” 4: for i = 1 → R do 5: Append “<tr>” to H 6: for j = 1 → C do 7: if M [i, j] = C then 8: cell ← Cells[i, j] 9: (rs, cs) ← get cell spans(M, i, j) 10: if rs > 0 ∧ cs > 0 then 11: Extend td to cover row and column spans 12: Append <td rowspan=rs+1 colspan=cs+1 bbox=cell> to H 13: else if rs > 0 then 14: Extend td vertically 15: Append <td rowspan=rs+1 bbox=cell> to H 16: else if cs > 0 then 17: Extend td horizontally 18: Append <td colspan=cs+1 bbox=cell> to H 19: else 20: Append <td bbox=cell> to H 21: end if 22: else if M [i, j] = N then 23: Append “</tr>” to H 24: end if 25: end for 26: end for 27: Append “</tbody></table>” to H 28: return H 1: Input:
attributable to OCR. This study clearly indicates that integrating a stronger OCR module can substantially boost the table reconstruction quality of DELTA, effectively narrowing the problem.
12. Evaluation Metrics Table (13) lists the metrics used for evaluation. TEDS and TEDS-S are applied to the table reconstruction task on PubTabNet, PubTables-1M, FinTabNet, and TORQUE; TEDS-S captures structural fidelity, while TEDS score takes into account both structure and content, making them well-suited for measuring both layout accuracy and content alignment. For the TabQA and TabVQA tasks on WTQ, FinTabNetQA, and TORQUE, we report ANLS, EM, and Relieved Accuracy, all of which range from 0 to 100. These
Dataset
Tesseract
Easy OCR
GT Mapped
41.5 54.4 70.0 40.8
55.9 53.0 84.0 54.8 63.6
91.2 87.8 92.5 86.8 83.5
FinTabNet PubTabNet FinTabNetQA PubTables-1M TORQUE
Table 11. TEDS scores across different OCR modules and ground truth content mapped to the structure of DELTA. Results show consistent improvements on FinTabNet, FinTabNetQA, and TORQUE datasets.
OCR Engine
Average Latency per image (in secs)
Tesseract EasyOCR
13.9 4.3
Table 12. Average Latency comparison of Tesseract and EasyOCR per table image in seconds calculated on the FinTabNet test set.
metrics are standard in QA benchmarks, reflecting exact correctness (EM), tolerance to minor variations (ANLS), and robustness to different semantic answer formats (Relieved Accuracy). Together, they ensure fair and comprehensive comparisons across diverse methods.
13. OTSL Ablation Figure (6) presents qualitative examples illustrating the compactness of the OTSL format relative to HTML. We include two scenarios: one featuring a large table and another involving a large table with a more complex structure. These examples demonstrate that OTSL not only preserves structural fidelity but also provides a significantly more compact representation than HTML. The compactness of OTSL further benefits LLMs by reducing context length, enabling more efficient and accurate table understanding. In our analysis, several input tables that were incorrectly processed in HTML format were correctly interpreted when encoded in OTSL, highlighting its effectiveness. This reduced representation allows larger tables to be processed without exceeding context limits, ultimately contributing to improved overall accuracy. Finally, the handling of mathematical expressions depends on the OCR module applied after structure recognition; therefore, OTSL itself does not impose any inherent limitations on the extraction of mathematical equations.
14. Qualitative Results In this section, we present qualitative results for table reconstruction on FinTabNet and TORQUE datasets, as well as for TabQA and TabVQA tasks.
Metric
Definition
Tree Edit Distance-based Similarity (TEDS)
Measures the similarity between predicted and ground truth HTML table structures using tree edit distance. It evaluates both the structure and content of tables, which we use to evaluate DELTA pipeline. A TEDS variant that evaluates only the HTML tag sequence, ignoring content. We use it to assess DELTA’s table structure recognition. Measures textual similarity between predicted and ground truth answers using the normalised Levenshtein distance, providing partial credit for near matches. We use this metric to evaluate TAR QA on the WTQ dataset. A strict binary metric that returns 1 if the predicted answer matches the ground truth exactly, and 0 otherwise. This metric considers predictions correct if any normalised form matches the ground truth, ignoring units and formatting. It emphasizes semantic equivalence while evaluating DELTA + TAR QA on the FinTabNetQA dataset for the TabVQA task.
TEDS-Structure (TEDS-S) Average Normalized Levenshtein Similarity (ANLS)
Exact Match (EM) Relieved-Accuracy
Table 13. Overview of metrics used for evaluating DELTA and TAR QA.
(a) HTML Character Count: 438, OTSL Character Count: 409
(b) HTML Character Count: 1607, OTSL Character Count: 1430
Figure 6. Qualitative examples from the TORQUE dataset illustrating the compactness of the OTSL format in terms of Character Counts from the input image.
14.1. Table Reconstruction Figure (7a) demonstrates a successful case of DELTA, where the table image has a clean layout with multiple columns and well-separated numeric content. This results in perfect structural accuracy (TEDS-S = 100) and a high overall score (TEDS = 80.98). Similarly, Figure (7b) shows another positive example, with a clear two-column structure and well-defined row–column divisions, yielding TEDS-S = 100 and TEDS = 88.11. In contrast, Figure (8a) highlights a failure case arising from OCR extraction errors: while the structural score remains high (TEDS-S = 95.15), the overall content fidelity is poor (TEDS = 19.35). Figure (8b) presents another challenging example, where low image resolution and a borderless table with bullet points hinder accurate reconstruction, leading to low scores (TEDS-S = 26.09, TEDS = 19.95). Similarly, Figure (9) presents qualitative examples of table reconstruction results on the TORQUE dataset. Figure (9a) demonstrates a successful reconstruction, reflected in a high TEDS-S and TEDS score of 97.22 and 96.06, respectively. In contrast, Figure (9b) highlights a failure case where slanted text and low-resolution input hinder accurate prediction, resulting in a significantly lower TEDS-S and TEDS score of 44.44 and 14.60, respectively.
14.2. Table Question Answering Figure (10a) and Figure (10b) present qualitative examples from the WTQ dataset for TabQA tasks, where the answers predicted by the proposed TAR QA framework are consistent with the ground truth. In contrast, Figure (11a) and Figure (11b) illustrate cases where the predictions deviate from the ground truth. For Figure (11a), the model outputs a value occurring immediately after the correct answer, indicating a limitation in its contextual understanding. For Figure (11b), the prediction is incorrect because the question is of a comparative type, for which the model has not been explicitly fine-tuned.
14.3. Table Visual Question Answering Figure (12a) and Figure (12b) show illustrative TabVQA examples from the FintabnetQA dataset using the DELTA+TAR QA pipeline. These examples highlight that even with difficult, borderless tables, the framework can accurately predict both numerical and textual answers, aligning with the ground truth. On the other hand, Figure (13a) and Figure (13b) showcase instances of divergence. In Figure (13a), the model becomes confused due to the complexity of the question type, while in Figure (13b), poor image quality leads to incorrect answer. These cases highlight both the strengths and current limitations of the approach, while also indicating clear directions, improved OCR, and enhanced reasoning for future enhancements.
(a) TEDS-S = 100 and TEDS = 80.98
Input Table Image
Rendered HTML image
What was the return on assets in plans for the pension cost in 2011
DELTA Output <otsl> <fcel> Exhlblt_No: <fcel> Exhlblt_Desctlptlon <nl> <fcel> 10.38 <fcel> Incentive_Cumpensalion_Award_Agreeitent_Ior_Steven_J_Jelirston_daled_March_162009_under_Ircenlive_Co mpensatian_Plan_6l_2009_(incorparaled_by_relerence_t0_Exkibil_10.3_liled_wilh_Ll_company_$_CutrentRRep ort_On_Ferm_&_K_Deled_Marc"_16,20091 <nl> <fcel> 10.39 <fcel> Credit_Agreentent_by_&nd_amorg_Cincinnali_Financiel_Corporalicn._CFC_Imveslmem:_Cempany;_anPNc_Ban k;_Nalional_Assecialion_daled_August_31_2009_(which_guperedes_thal_certein_Oller_and_Acceplance_ol_[efi rs_[J_rellew_$75_Iillion_Unsecured_line_el_cre_Jit_with_PNC_Dank_Nationgl_Asucialien_ellective_Junle_30.20 09,_Ulal_wa>_filed_wilh_ard_described_in_the_company_>_Currem[_Reporl_0n_Form_&K_daled_July_7,_200 <ecel> <fcel> 2012 <fcel> 2011 <fcel> 2010 <nl> <fcel> Pension_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.65% <fcel> 4.50% <fcel> 5.25% <nl> 9)_(incorporaled_by_relerence_to_Exhibil_10.1_liled_wilh_ll_company'$_Quarterly_Report_on_Form <fcel> Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> _10_0_fer_lhe_quarter_erued_Septenber_JO,20091. <nl> <fcel> 10.40 <fcel> Discount_rate <fcel> 3.80% <fcel> 4.55% <fcel> 5.40% <nl> <fcel> Pension_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.50% <fcel> 5.25% <fcel> 5.85% <nl> Swap_Agreemen_by_and_arnong_Ciricinrali_Financial_Corporalicn_CFC_[nvesurnen_Contuany_and_PNC_Dank; <fcel> Return_on_assets_in_plans <fcel> 8.25% <fcel> 8.75% <fcel> 8.75% <nl> <fcel> Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.55% <fcel> 5.40% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans <fcel> _Nalicnal_Assucialinn_Ualed_August_31,_2009_(iricurporaled_DY_relererce_l0_Exhibit_10.2_liled_with_the_co 8.00% <fcel> 8.50% <fcel> 8.50% <nl> <fcel> Health_care_trend_rate <fcel> 7.70% <fcel> 8.10% <fcel> 8.50% <nl> mpany>_Quarterly_Repert_&n_Form_10-0_fur_Llle_quarter_Ended_Seplernber_30.20091 <nl> <ecel> <fcel>Stalemtent_re:_Compulalian_0l_per_share_eerfings_for_Ihe_years_erled_December_31,_2009.2008,_ard _2007_cunlained_in_Part_Il__Item_8._Nele_12_t0_le_Censolidaled_Finarcial_Slalentents <nl> <fcel> 14 <fcel>Cincinnali_Finaricial_Corperalian_Cude_ol_Elhics_Ior_Senior_Financiel_Oflicers_(incorpuraled_by_releren ce_(0_the_contpany'$_Delinitive_Prexy_Stalernent_deta_March_13._2004_(File_No_000-046041) <nl> <fcel> 21 <fcel> Cincinnati_Finarcial_Corparalion_subsidiaries_cuntained_in_Pert_4,_Item_1_of_this_repert <nl> <fcel> 23 <fcel> Consen_cl_Independent_Registered_Public_Accounting_Firrn <nl> <fcel> 31 <fcel> Certificalion_pursuent_to_Seclien_302_el_Llle_Sarbane?_Oxley_Act_0l_2002_Chiel_Dueculive_Ollicer <nl> <fcel> J1B<fcel>Certificalion_pursuent_to_Seclien_302_cl_Ulle_Sarbanes_Oxley_Actol_2002_Chiel_Financial_Ollicer <nl> <fcel> 32 <fcel> Certilicalion_isuaI_Seclipn_906_6l_Ule_Sarbane:_Oile__Actol_2002 <nl> </otsl>
(b) TEDS-S = 100 and TEDS = 88.11.
Figure 7. Qualitative examples from the FinTabNet dataset illustrating table reconstruction outputs produced by DELTA framework.
Input Table Image
Rendered HTML image
What was the return on assets in plans for the pension cost in 2011
DELTA Output <otsl> <ecel> <fcel> Loynlty_Sertutes <fcel> Epllon_MurkeLIa_Snutes <fcel> Fchute_Ltcl_Sriites <fcel> Ftlvule_LAbd_Cndlt <fcel> Curpurzle_olher <fcel> Elleluzilen: <fcel> utol <nl> <ecel> <ecel> ecel ecel ecel ecel ecel ecel <nl> <ecel> <fcel> 3715,044 <fcel> 3504172 <fcel> 3306.665 <fcel> 4695.487 <fcel> 5_J <fcel> 538}Sis <fcel> 51,964341 <nl> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <fcel> MM <nl> <ecel> <ecel> <ecel> <fcel> S <fcel> 15.56 <ecel> <ecel> <ecel> <nl> <ecel> <ecel> <fcel> S <fcel> 545 <fcel> L6l4 <ecel> <ecel> <fcel> 57_6] <nl> <ecel> <ecel> <ecel> <ecel> <ecel> <fcel> 1421 <ecel> <ecel> <nl> <ecel> <fcel> 1c6725 <fcel> 49447 <fcel> 10416 <fcel> 177.31 <fcel> 140.154' <ecel> <fcel> 447757 <nl> <ecel> <ecel> <ecel> <ecel> <ecel> <fcel> 1SI <ecel> <fcel> MSII <nl> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <nl> <ecel> <fcel> Idhs <fcel> Je4_Epllon <fcel> d_Fhule <fcel> 2_Itivale <fcel> 47784 <ecel> <fcel> 5497 <nl> <ecel> <fcel> LYMIL}_Senutes <fcel> TurACLIA_Snutes <fcel> HAADL_Srles <fcel> LDt_Cnlt <ecel> <fcel> 2012 <fcel> 2011 <fcel> 2010 <nl> <fcel> Pension_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.65% <fcel> 4.50% <fcel> 5.25% <nl> <fcel> <fcel> ucpucac_uther Ellmliilen: <fcel> FutnlOther_postretirement_benefits_funded_status: <nl> <ecel> <ecel> <ecel> <ecel> <fcel> IDOU*4E <fcel> <ecel> <fcel> Future_salary_increases <fcel> 4.50%<fcel> <fcel> 4.50% <fcel> 4.50% <nl> <fcel> <lcel> <lcel> <lcel> <nl> <fcel>Mai Discount_rate 3.80% <fcel> 4.55% <fcel> 5.40% <nl> <fcel> Pension_cost: <lcel> <lcel> 5361.647 <lcel> <nl> <fcel> Discount_rate <fcel> 4.50%5_17,757 <fcel> 5.25%<fcel> <fcel> 5.85% <nl> <fcel> <ecel> <nl> <ecel> <fcel> 6755,46 <fcel> 491,943 <fcel> <fcel> 5750,155 <fcel> 5471,629 <fcel> Return_on_assets_in_plans <fcel> 8.25% <fcel> 8.75% <fcel> 8.75% <nl> <fcel> Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> 3102s244 <nl> <ecel> <fcel> 2095 <fcel> 1J6,53 <fcel> M6ald <fcel> 257.73 <fcel> [46.407, <ecel> <fcel> 655--1 <nl> Other_postretirement_benefits_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.55% <fcel> 5.40% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans <fcel> 8.00% <ecel> <fcel> J4_746 <fcel> <fcel> 75_451 <ecel> 86 <ecel> <ecel> <ecel> <nl> <ecel> <ecel> 8.50% <fcel> 8.50% <nl><fcel> <fcel> Health_care_trend_rate <fcel> 7.70% <fcel> 8.10% <ecel> <fcel> 8.50% <nl> <fcel> 6_5q1 <fcel> I <fcel> Num <ecel> <ecel> <nl> <ecel> <fcel> = <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <nl> <ecel> <ecel> <ecel> <ecel> <ecel> <fcel> CS_ <ecel> <fcel> a <nl> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <nl> <ecel> <ecel> <ecel> <fcel> 94 <ecel> <ecel> <ecel> <fcel> JC0 <nl> <ecel> <fcel> 15,631 <fcel> 12,971 <fcel> 0456 <fcel> 4217 <fcel> 338 <ecel> <fcel> 45543 <nl> <ecel> <fcel> Loyulty <fcel> Epllon_MurkeLIla <fcel> Fthute_Ltcl <fcel> Fthute_Lbd <fcel> Corpurate <ecel> <ecel> <nl> <ecel> <fcel> eiae <fcel> Celdll <fcel> A <fcel> Atta <fcel> ALLCI <ecel> <ecel> <nl> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <nl> <ecel> <fcel> ocjy_ <fcel> CitioTo <fcel> DJ__- <fcel> Ea <fcel> E <fcel> Dui <fcel> 890n_9 <nl> <ecel> <fcel> Jacdo <fcel> e[ <fcel> ee <fcel> OacO <fcel> Atee <ecel> <ecel> <nl> <ecel> <fcel> e <fcel> te <fcel> Tale <fcel> TJ <fcel> T <ecel> <ecel> <nl> <ecel> <ecel> <fcel> Vt <fcel> se <ecel> <ecel> <ecel> <ecel> <nl> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <nl> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <nl> <ecel> <fcel> Fet] <ecel> <fcel> ae <fcel> Cedo <ecel> <ecel> <ecel> <nl> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <ecel> <nl> <ecel> <fcel> IR4 <fcel> 1-935 <fcel> 35042 <fcel> 318075 <fcel> 146.192, <ecel> <fcel> J51R44 <nl> <ecel> <fcel> J5._1 <fcel> J0s <fcel> 45.555 <fcel> 2789 <fcel> 6,57 <ecel> <fcel> 9L <nl> </otsl>
(a) TEDS-S = 95.15 and TEDS = 19.35
Input Table Image
DELTA Output
Rendered HTML image
What was the return on assets in plans for the pension cost in 2011
<otsl> <ecel> <fcel> Frodutts_und_Senutes <nl> <ecel> <fcel> AIR_MILES_Reward_Pgtam <nl> <ecel> <fcel> Shortterm_Loyahty_Progtn <nl> <ecel> <fcel> Matketing_Setvices_~Agency_services_~Maketing_technol ogy_setvices_DJta_tvices_~Suategy_ad_aalytical_stvices_T raditicn_l_and_digital_mztketing <nl> <ecel> <fcel> el[ss_AEeTe_Pracessing_Services_New_account_pocesing_ ~Bill_prucessing_RcmllnCe_processing_Customet_cilt <nl> <ecel> <fcel> Makctng_Scwviccs <nl> </otsl>
<ecel> <fcel> 2012 <fcel> 2011 <fcel> 2010 <nl> <fcel> Pension_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.65% <fcel> 4.50% <fcel> 5.25% <nl> <fcel> Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.80% <fcel> 4.55% <fcel> 5.40% <nl> <fcel> Pension_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.50% <fcel> 5.25% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans <fcel> 8.25% <fcel> 8.75% <fcel> 8.75% <nl> <fcel> Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.55% <fcel> 5.40% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans <fcel> 8.00% <fcel> 8.50% <fcel> 8.50% <nl> <fcel> Health_care_trend_rate <fcel> 7.70% <fcel> 8.10% <fcel> 8.50% <nl>
(b) TEDS-S = 26.09 and TEDS = 19.95
Figure 8. Inaccurate qualitative examples from the FinTabNet dataset illustrating table reconstruction outputs generated by DELTA.
Input Table Image
Rendered HTML image
What was the return on assets in plans for the pension cost in 2011
DELTA Output <otsl> <ecel> <fcel> RE_2017-18_(_करोड़_) <fcel> BE_2018-19_(_करोड़_) <fcel> प्रति_परिवर्तन <nl> <fcel> कोयला_मंत्रालय <fcel> 14478 <fcel> 15799 <fcel> 9.124188 <nl> <fcel> पूर्वोत्तर_क्षेत्र_(_बुनियादी_के _लिए)_के _विकास_मंत्रालय <fcel> 330 <fcel> 60० <fcel> 81.81818 <nl> <fcel> नवीन_और_अक्षय_ऊर्जा_मंत्रालय <fcel> 9466 <fcel> <ecel>10317 <fcel> 2012<fcel> <fcel> 20118.99007 <fcel> 2010 <nl> <fcel> Pension_funded_status: <lcel> <lcel> <lcel> <nl> तिक_गैस_मंत्रालय <fcel> Discount_rate <fcel> 3.65% <fcel> 4.50% <fcel> 5.25% <nl> <nl> <fcel> पेट्रोलियम_और_प्राकृ <fcel> 87319 <fcel> Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> <fcel> 89210 <fcel> 2.165623 <nl> <fcel><lcel> बिजली_मंत्रालय <fcel> 64318 <fcel> 53469 Discount_rate <fcel> 3.80% <fcel> 4.55% <fcel> 5.40% <nl> <fcel> Pension_cost: <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.50% <fcel> 5.25% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans <fcel> 8.25% <fcel> 8.75% <fcel> 8.75% <nl> <fcel> Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> <fcel> -16.8678 <nl> <fcel> नागरिक_उड्डयन_मंत्रालय 2543 <fcel> 4086 <fcel> <fcel> Other_postretirement_benefits_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.55% <fcel><fcel> 5.40% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans 8.00% <fcel> 8.50% <fcel> 8.50% <nl> <fcel> Health_care_trend_rate <fcel> 7.70% <fcel> 8.10% <fcel> 8.50% <nl> 60.67637 <nl> <fcel> दूरसंचार_विभाग <fcel> 9786 <fcel> १६_9_8६ <fcel> 73.57449 <nl> <fcel> रेल_मंत्रालय <fcel> 80000 <fcel> 93440 <fcel> 16.8 <nl> <fcel> आवास_और_मंत्रालय_शहरी_मामलात <fcel> 15193 <fcel> 399_37 <fcel> 162.8645 <nl> <fcel> मंत्रालय_सड़क_परिवहन_और_राजमार्ग <fcel> 59279 <fcel> 62000 <fcel> 4.5_9_0158 <nl> <fcel> नौवहन_मंत्रालय <fcel> 3165 <fcel> 4042 <fcel> 27.70932 <nl> <fcel> इस्पात_मंत्रालय <fcel> 11428 <fcel> 11294 <fcel> -1.17256 <nl> <fcel> कल_योग <fcel> 357305 <fcel> 401180 <fcel> 12.2794 <nl> </otsl>
(a) Shows a prediction that closely aligns with the input table, achieving a high TEDS-S and TEDS score of 97.22 and 96.06, respectively.
Input Table Image DELTA Output
Rendered HTML image
<otsl> <ecel> <fcel> पा_नुशीन_चंदा_निर्वान_आसग्न <ecel> <nl> <fcel> () <fcel> संबिधान_फे ॰_यथास्थिति,_अनुच्छेद_२४३२_के _बंड_(१)_या_अनुच्छेद_२४३४_रेः_घर _८१)_*_अथीन_संयशित_राम्य_या_गय_राग्यनग्_बैः_राज्य_निवाचन_आपन_नियुनन <fcel> --_--3-_१५५_य_(पदे॰ <nl> </otsl>
<ecel> <fcel> 2012 <fcel> 2011 <fcel> 2010 <nl> <fcel> Pension_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.65% <fcel> 4.50% <fcel> 5.25% <nl> <fcel> Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.80% <fcel> 4.55% <fcel> 5.40% <nl> <fcel> Pension_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.50% <fcel> 5.25% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans <fcel> 8.25% <fcel> 8.75% <fcel> 8.75% <nl> <fcel> Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.55% <fcel> 5.40% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans <fcel> 8.00% <fcel> 8.50% <fcel> 8.50% <nl> <fcel> Health_care_trend_rate <fcel> 7.70% <fcel> 8.10% <fcel> 8.50% <nl>
What was the return on assets in plans for the pension cost in 2011
(b) Depicts a challenging case with slanted text and low-resolution input, leading to notable differences between the predicted and input tables and a lower TEDS-S and TEDS score of 44.44 and 14.60, respectively.
Figure 9. Qualitative results of the proposed DELTA framework on a TORQUE sample for the table reconstruction task.
Table Image
HTML String from WTQ <table border=\"1\" cellspacing=\"0\" cellpadding=\"5\">\n <thead>\n <tr>\n <th></th>\n <th>Album</th>\n <th>Artist(s)</th>\n <th>Sales</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>1</td>\n <td>Vain elämää</td>\n <td>various artists</td>\n <td>164,119</td>\n </tr>\n <tr>\n <td>2</td>\n <td>Koodi</td>\n <td>Robin</td>\n <td>117,126</td>\n </tr>\n <tr>\n <td>3</td>\n <td>Vain elämää</td>\n <td>various artists</td>\n <td>81,725</td>\n </tr>\n <tr>\n <td>4</td>\n <td>Chillaa</td>\n <td>Robin</td>\n <td>73,439</td>\n </tr>\n <tr>\n <td>5</td>\n <td>21</td>\n <td>Adele</td>\n <td>44,297</td>\n </tr>\n <tr>\n <td>6</td>\n <td>Yhdestä puusta</td>\n <td>Jukka Poika</td>\n <td>42,429</td>\n </tr>\n <tr>\n <td>7</td>\n <td>Vie mut kotiin</td>\n <td>Jesse <ecel> <fcel> 2012 <fcel> 2011 <fcel> 2010 <nl> <fcel> Pension_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.65% <fcel> 4.50% <fcel> 5.25% <nl> <fcel> Future_salary_increases Kaikuranta</td>\n <td>38,985</td>\n </tr>\n <tr>\n <td>8</td>\n <td>Kun valaistun</td>\n <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.80% <fcel> 4.55% <fcel> 5.40% <nl> <fcel> Pension_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.50%</tr>\n <fcel> 5.25% <fcel> 5.85% <td>9</td>\n <nl> <fcel> Return_on_assets_in_plans <fcel> 8.25% <fcel> 8.75% <fcel> 8.75% <nl> <fcel> <td>Chisu</td>\n <td>31,541</td>\n <tr>\n <td>Joululauluja</td>\n <td>Juha Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.55% <fcel> 5.40% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans <fcel> 8.00% <fcel> 8.50% <fcel> 8.50% <nl> <fcel> Health_care_trend_rate <fcel> 7.70% <fcel> 8.10% <fcel> 8.50% <nl> Tapio</td>\n <td>29,080</td>\n </tr>\n <tr>\n <td>10</td>\n <td>Hunningolla</td>\n <td>Erin</td>\n <td>27,655</td>\n </tr>\n </tbody>\n</table>
Input OTSL Sequence to TARQA <otsl> <ecel> <fcel> Album <fcel> Artist(s) <fcel> Sales <nl> <fcel> 1 <fcel> Vain_elämää <fcel> various_artists <fcel> 164,119 <nl> <fcel> 2 <fcel> Koodi <fcel> Robin <fcel> 117,126 <nl> <fcel> 3 <fcel> Vain_elämää <fcel> various_artists <fcel> 81,725 <nl> <fcel> 4 <fcel> Chillaa <fcel> Robin <fcel> 73,439 <nl> <fcel> 5 <fcel> 21 <fcel> Adele <fcel> 44,297 <nl> <fcel> 6 <fcel> Yhdestä_puusta <fcel> Jukka_Poika <fcel> 42,429 <nl> <fcel> 7 <fcel> Vie_mut_kotiin <fcel> Jesse_Kaikuranta <fcel> 38,985 <nl> <fcel> 8 <fcel> Kun_valaistun <fcel> Chisu <fcel> 31,541 <nl> <fcel> 9 <fcel> Joululauluja <fcel> Juha_Tapio <fcel> 29,080 <nl> <fcel> 10 <fcel> Hunningolla <fcel> Erin <fcel> 27,655 <nl> </otsl>
Input Question Which album has the highest number of sales but doesn't have a designated artist? What was the return on assets in plans for the pension cost in 2011
Answer from TARQA
vain elämää Groundtruth Answer
vain elämää
(a) The predicted answers align with the ground truth
Table Image
HTML String from WTQ <table border=\"1\" cellspacing=\"0\" cellpadding=\"5\">\n <thead>\n <tr>\n <th>Year</th>\n <th>Competition</th>\n <th>Venue</th>\n <th>Position</th>\n <th>Event</th>\n <th>Notes</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>2000</td>\n <td>World Junior Championships</td>\n <td>Santiago, Chile</td>\n <td>1st</td>\n <td>Discus throw</td>\n <td>59.51 m</td>\n </tr>\n <tr>\n <td>2003</td>\n <td>All-Africa Games</td>\n <td>Abuja, Nigeria</td>\n <td>5th</td>\n <td>Shot put</td>\n <td>17.76 m</td>\n </tr>\n <tr>\n <td>2003</td>\n <td>All-Africa Games</td>\n <td>Abuja, Nigeria</td>\n <td>2nd</td>\n <td>Discus throw</td>\n <td>62.86 m</td>\n </tr>\n <tr>\n <td>2004</td>\n <td>African Championships</td>\n <td>Brazzaville, Republic of the Congo</td>\n <td>2nd</td>\n <td>Discus throw</td>\n <td>63.50 m</td>\n </tr>\n <tr>\n <td>2004</td>\n <td>Olympic Games</td>\n <td>Athens, Greece</td>\n <td>8th</td>\n <td>Discus throw</td>\n <td>62.58 m</td>\n </tr>\n <tr>\n <td>2006</td>\n <td>Commonwealth Games</td>\n <td>Melbourne, <td>Shot put</td>\n <td>18.44 m</td>\n <td>2006</td>\n <ecel> <fcel> 2012 <fcel> Australia</td>\n 2011 <fcel> 2010 <nl> <fcel><td>7th</td>\n Pension_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.65% <fcel> 4.50%</tr>\n <fcel> 5.25%<tr>\n <nl> <fcel> Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.80% <fcel> 4.55% <fcel> 5.40% <nl> <fcel> <td>Commonwealth Games</td>\n <td>Melbourne, Australia</td>\n <td>4th</td>\n <td>Discus throw</td>\n <td>60.99 Pension_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.50% <fcel> 5.25% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans <fcel> 8.25% <fcel> 8.75% <fcel> 8.75% <nl> <fcel> Future_salary_increases <fcel> 4.50%<tr>\n <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_cost: <lcel> <lcel><td>Algiers, <lcel> <nl> <fcel> Discount_rate <fcel> 4.55% <fcel> 5.40% <fcel> 5.85% <nl> m</td>\n </tr>\n <td>2007</td>\n <td>All-Africa Games</td>\n Algeria</td>\n <td>3rd</td>\n <fcel> Return_on_assets_in_plans <fcel> 8.00% <fcel> 8.50% <fcel> 8.50% <nl> <fcel> Health_care_trend_rate <fcel> 7.70% <fcel> 8.10% <fcel> 8.50% <nl> <td>Discus throw</td>\n <td>57.79 m</td>\n </tr>\n <tr>\n <td>2008</td>\n <td>African Championships</td>\n <td>Addis Ababa, Ethiopia</td>\n <td>2nd</td>\n <td>Discus throw</td>\n <td>56.98 m</td>\n </tr>\n </tbody>\n</table>
Input OTSL Sequence to TARQA <otsl> <fcel> Year <fcel> Competition <fcel> Venue <fcel> Position <fcel> Event <fcel> Notes <nl> <fcel> 2000 <fcel> World_Junior_Championships <fcel> Santiago,_Chile <fcel> 1st <fcel> Discus_throw <fcel> 59.51_m <nl> <fcel> 2003 <fcel> All-Africa_Games <fcel> Abuja,_Nigeria <fcel> 5th <fcel> Shot_put <fcel> 17.76_m <nl> <fcel> 2003 <fcel> All-Africa_Games <fcel> Abuja,_Nigeria <fcel> 2nd <fcel> Discus_throw <fcel> 62.86_m <nl> <fcel> 2004 <fcel> African_Championships <fcel> Brazzaville,_Republic_of_the_Congo <fcel> 2nd <fcel> Discus_throw <fcel> 63.50_m <nl> <fcel> 2004 <fcel> Olympic_Games <fcel> Athens,_Greece <fcel> 8th <fcel> Discus_throw <fcel> 62.58_m <nl> <fcel> 2006 <fcel> Commonwealth_Games <fcel> Melbourne,_Australia <fcel> 7th <fcel> Shot_put <fcel> 18.44_m <nl> <fcel> 2006 <fcel> Commonwealth_Games <fcel> Melbourne,_Australia <fcel> 4th <fcel> Discus_throw <fcel> 60.99_m <nl> <fcel> 2007 <fcel> AllAfrica_Games <fcel> Algiers,_Algeria <fcel> 3rd <fcel> Discus_throw <fcel> 57.79_m <nl> <fcel> 2008 <fcel> African_Championships <fcel> Addis_Ababa,_Ethiopia <fcel> 2nd <fcel> Discus_throw <fcel> 56.98_m <nl> </otsl>
Input Question In which competition did hopley finish first?
What was the return on assets in plans for the pension cost in 2011
Answer from TARQA World Junior Championships
Groundtruth Answer World Junior Championships
(b) The predicted answers align with the ground truth
Figure 10. Qualitative examples from the WTQ dataset for TabQA tasks, illustrating answers generated TAR QA-OTSL.
Table Image
HTML String from WTQ <table border=\"1\" cellspacing=\"0\" cellpadding=\"5\">\n <thead>\n <tr>\n <th>Pos</th>\n <th>No</th>\n <th>Driver</th>\n <th>Team</th>\n <th>Laps</th>\n <th>Time/Retired</th>\n <th>Grid</th>\n <th>Points</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>1</td>\n <td>1</td>\n <td>Sébastien Bourdais</td>\n <td>Newman/Haas Racing</td>\n <td>66</td>\n <td>1:51:31.146</td>\n <td>2</td>\n <td>34</td>\n </tr>\n <tr>\n <td>2</td>\n <td>9</td>\n <td>Justin Wilson</td>\n <td>RuSPORT</td>\n <td>66</td>\n <td>+3.528 secs</td>\n <td>1</td>\n <td>29</td>\n </tr>\n <tr>\n <td>3</td>\n <td>5</td>\n <td>Will Power</td>\n <td>Team Australia</td>\n <td>66</td>\n <td>+46.536 secs</td>\n <td>4</td>\n <td>26</td>\n </tr>\n <tr>\n <td>4</td>\n <td>2</td>\n <td>Bruno Junqueira</td>\n <td>Newman/Haas Racing</td>\n <td>66</td>\n <td>+1:04.023</td>\n <td>3</td>\n <td>23</td>\n </tr>\n <tr>\n <td>5</td>\n <td>15</td>\n <td>Alex Tagliani</td>\n <td>Team Australia</td>\n <td>66</td>\n <td>+1:18.033</td>\n <td>8</td>\n <td>22</td>\n </tr>\n <tr>\n <td>6</td>\n <td>6</td>\n <td>Oriol Servià</td>\n <td>PKV Racing</td>\n <td>66</td>\n <td>+1:28.745</td>\n <td>7</td>\n <td>19</td>\n </tr>\n <tr>\n <td>7</td>\n <td>4</td>\n <td>Nelson Philippe</td>\n <td>CTE Racing HVM</td>\n <td>66</td>\n <td>+1:29.997</td>\n <td>10</td>\n <td>17</td>\n </tr>\n <tr>\n <td>8</td>\n <td>27</td>\n <td>Andrew Ranger</td>\n <td>Mi-Jack Conquest Racing</td>\n <td>65</td>\n <td>+ 1 Lap</td>\n <td>16</td>\n <td>16</td>\n </tr>\n <tr>\n <td>9</td>\n <td>3</td>\n <td>David Martínez</td>\n <td>Forsythe Racing</td>\n <td>65</td>\n <td>+ 1 Lap</td>\n <td>9</td>\n <td>13</td>\n </tr>\n <tr>\n <td>10</td>\n <td>7</td>\n <td>Buddy Rice</td>\n <td>Forsythe Racing</td>\n <td>65</td>\n <td>+ 1 Lap</td>\n <td>14</td>\n <td>11</td>\n </tr>\n <tr>\n <td>11</td>\n <td>34</td>\n <td>Charles Zwolsman</td>\n <td>Mi-Jack Conquest Racing</td>\n <td>65</td>\n <td>+ 1 Lap</td>\n <td>12</td>\n <td>10</td>\n </tr>\n <tr>\n <td>12</td>\n <td>18</td>\n <td>Antônio Pizzonia</td>\n <td>Rocketsports Racing</td>\n <td>65</td>\n <td>+ 1 Lap</td>\n <td>15</td>\n <td>9</td>\n </tr>\n <tr>\n <td>13</td>\n <td>11</td>\n <td>Jan <ecel> <fcel> 2012 <fcel> 2011 Coyne <fcel> 2010 <nl> <fcel> Pension_funded_status: <lcel> <lcel> <lcel> <td>17</td>\n <nl> <fcel> Discount_rate <fcel> 3.65% <fcel><tr>\n 4.50% <fcel> 5.25% <nl> <fcel> Future_salary_increases Heylen</td>\n <td>Dale Racing</td>\n <td>65</td>\n <td>+ 1 Lap</td>\n <td>8</td>\n </tr>\n <td>14</td>\n <td>10</td>\n <td>Ryan <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.80% <fcel> 4.55% <fcel> 5.40% <nl> <fcel> Briscoe</td>\n <td>RuSPORT</td>\n <td>64</td>\n <td>+ 2 Laps</td>\n <td>5</td>\n <td>7</td>\n </tr>\n <tr>\n <td>15</td>\n <td>19</td>\n <td>Andreas Pension_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.50% <fcel> 5.25% <fcel> 5.85% <nl> <fcel> Return_on_assets_in_plans <fcel> 8.25% <fcel> 8.75% <fcel> 8.75% <nl> <fcel> Wirth</td>\n <td>Dale Coyne Racing</td>\n <td>64</td>\n <td>+ 2 Laps</td>\n <td>18</td>\n <td>6</td>\n </tr>\n <tr>\n <td>16</td>\n <td>20</td>\n <td>Katherine Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.55% <fcel> 5.40% <fcel> 5.85% <nl> Legge</td>\n <td>PKV Racing</td>\n <td>63</td>\n Laps</td>\n <td>13</td>\n <td>5</td>\n </tr>\n <td>17</td>\n <td>Mario <fcel> Return_on_assets_in_plans <fcel> 8.00%<td>+ <fcel>38.50% <fcel> 8.50% <nl> <fcel> Health_care_trend_rate <fcel><tr>\n 7.70% <fcel> 8.10% <fcel><td>8</td>\n 8.50% <nl> Domínguez</td>\n <td>Rocketsports Racing</td>\n <td>59</td>\n <td>Retired</td>\n <td>11</td>\n <td>4</td>\n </tr>\n <tr>\n <td>18</td>\n <td>14</td>\n <td>Dan Clarke</td>\n <td>CTE Racing - HVM</td>\n <td>7</td>\n <td>Differential</td>\n <td>6</td>\n <td>3</td>\n </tr>\n </tbody>\n</table>
Input OTSL Sequence to TARQA <otsl> <fcel> Pos <fcel> No <fcel> Driver <fcel> Team <fcel> Laps <fcel> Time/Retired <fcel> Grid <fcel> Points <nl> <fcel> 1 <fcel> 1 <fcel> Sébastien_Bourdais <fcel> Newman/Haas_Racing <fcel> 66 <fcel> 1:51:31.146 <fcel> 2 <fcel> 34 <nl> <fcel> 2 <fcel> 9 <fcel> Justin_Wilson <fcel> RuSPORT <fcel> 66 <fcel> +3.528_secs <fcel> 1 <fcel> 29 <nl> <fcel> 3 <fcel> 5 <fcel> Will_Power <fcel> Team_Australia <fcel> 66 <fcel> +46.536_secs <fcel> 4 <fcel> 26 <nl> <fcel> 4 <fcel> 2 <fcel> Bruno_Junqueira <fcel> Newman/Haas_Racing <fcel> 66 <fcel> +1:04.023 <fcel> 3 <fcel> 23 <nl> <fcel> 5 <fcel> 15 <fcel> Alex_Tagliani <fcel> Team_Australia <fcel> 66 <fcel> +1:18.033 <fcel> 8 <fcel> 22 <nl> <fcel> 6 <fcel> 6 <fcel> Oriol_Servià <fcel> PKV_Racing <fcel> 66 <fcel> +1:28.745 <fcel> 7 <fcel> 19 <nl> <fcel> 7 <fcel> 4 <fcel> Nelson_Philippe <fcel> CTE_Racing_-_HVM <fcel> 66 <fcel> +1:29.997 <fcel> 10 <fcel> 17 <nl> <fcel> 8 <fcel> 27 <fcel> Andrew_Ranger <fcel> MiJack_Conquest_Racing <fcel> 65 <fcel> +_1_Lap <fcel> 16 <fcel> 16 <nl> <fcel> 9 <fcel> 3 <fcel> David_Martínez <fcel> Forsythe_Racing <fcel> 65 <fcel> +_1_Lap <fcel> 9 <fcel> 13 <nl> <fcel> 10 <fcel> 7 <fcel> Buddy_Rice <fcel> Forsythe_Racing <fcel> 65 <fcel> +_1_Lap <fcel> 14 <fcel> 11 <nl> <fcel> 11 <fcel> 34 <fcel> Charles_Zwolsman <fcel> Mi-Jack_Conquest_Racing <fcel> 65 <fcel> +_1_Lap <fcel> 12 <fcel> 10 <nl> <fcel> 12 <fcel> 18 <fcel> Antônio_Pizzonia <fcel> Rocketsports_Racing <fcel> 65 <fcel> +_1_Lap <fcel> 15 <fcel> 9 <nl> <fcel> 13 <fcel> 11 <fcel> Jan_Heylen <fcel> Dale_Coyne_Racing <fcel> 65 <fcel> +_1_Lap <fcel> 17 <fcel> 8 <nl> <fcel> 14 <fcel> 10 <fcel> Ryan_Briscoe <fcel> RuSPORT <fcel> 64 <fcel> +_2_Laps <fcel> 5 <fcel> 7 <nl> <fcel> 15 <fcel> 19 <fcel> Andreas_Wirth <fcel> Dale_Coyne_Racing <fcel> 64 <fcel> +_2_Laps <fcel> 18 <fcel> 6 <nl> <fcel> 16 <fcel> 20 <fcel> Katherine_Legge <fcel> PKV_Racing <fcel> 63 <fcel> +_3_Laps <fcel> 13 <fcel> 5 <nl> <fcel> 17 <fcel> 8 <fcel> Mario_Domínguez <fcel> Rocketsports_Racing <fcel> 59 <fcel> Retired <fcel> 11 <fcel> 4 <nl> <fcel> 18 <fcel> 14 <fcel> Dan_Clarke <fcel> CTE_Racing_-_HVM <fcel> 7 <fcel> Differential <fcel> 6 <fcel> 3 <nl> </otsl>
Input Question Who finished directly after the driver who finished in 1:28.745?
What was the return on assets in plans for the pension cost in 2011
Answer from TARQA
Andrew Ranger Groundtruth Answer
Nelson Philippe
(a) The predictions differ from the ground truth
Table Image
HTML String from WTQ <table border=\"1\" cellspacing=\"0\" cellpadding=\"5\">\n <thead>\n <tr>\n <th>#</th>\n <th>Player</th>\n <th>Goals</th>\n <th>Caps</th>\n <th>Career</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>1</td>\n <td>Landon Donovan</td>\n <td>57</td>\n <td>155</td>\n <td>2000–present</td>\n </tr>\n <tr>\n <td>2</td>\n <td>Clint Dempsey</td>\n <td>36</td>\n <td>103</td>\n <td>2004–present</td>\n </tr>\n <tr>\n <td>3</td>\n <td>Eric Wynalda</td>\n <td>34</td>\n <td>106</td>\n <td>1990–2000</td>\n </tr>\n <tr>\n <td>4</td>\n <td>Brian McBride</td>\n <td>30</td>\n <td>95</td>\n <td>1993–2006</td>\n </tr>\n <tr>\n <td>5</td>\n <td>Joe-Max Moore</td>\n <td>24</td>\n <td>100</td>\n <td>1992–2002</td>\n </tr>\n <tr>\n <td>6T</td>\n <td>Jozy Altidore</td>\n <td>21</td>\n <td>67</td>\n <td>2007–present</td>\n </tr>\n <tr>\n <td>6T</td>\n <td>Bruce Murray</td>\n <td>21</td>\n <td>86</td>\n <td>1985–1993</td>\n </tr>\n <tr>\n <ecel> <fcel> 2012 <fcel> 2011 <fcel> 2010 Johnson</td>\n <nl> <fcel> Pension_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.65% <fcel> 4.50% <fcel> 5.25% <nl> <fcel> Future_salary_increases <td>8</td>\n <td>Eddie <td>19</td>\n <td>62</td>\n <td>2004–present</td>\n </tr>\n <tr>\n <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_funded_status: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 3.80% <fcel> 4.55% <fcel> 5.40% <nl> <fcel> Pension_cost: <lcel><td>Earnie <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.50% <fcel> 5.25% <fcel> 5.85%<td>101</td>\n <nl> <fcel> Return_on_assets_in_plans <fcel> 8.25% <fcel> 8.75% <fcel></tr>\n 8.75% <nl> <fcel> <td>9T</td>\n Stewart</td>\n <td>17</td>\n <td>1990–2004</td>\n <tr>\n Future_salary_increases <fcel> 4.50% <fcel> 4.50% <fcel> 4.50% <nl> <fcel> Other_postretirement_benefits_cost: <lcel> <lcel> <lcel> <nl> <fcel> Discount_rate <fcel> 4.55% <fcel> 5.40% <fcel> 5.85% <nl> <td>9T</td>\n <td>DaMarcus Beasley</td>\n <td>114</td>\n <td>2001–present</td>\n </tr>\n <fcel> Return_on_assets_in_plans <fcel> 8.00% <fcel> 8.50%<td>17</td>\n <fcel> 8.50% <nl> <fcel> Health_care_trend_rate <fcel> 7.70% <fcel> 8.10% <fcel> 8.50% <nl> </tbody>\n</table>
Input OTSL Sequence to TARQA <otsl> <fcel> # <fcel> Player <fcel> Goals <fcel> Caps <fcel> Career <nl> <fcel> 1 <fcel> Landon_Donovan <fcel> 57 <fcel> 155 <fcel> 2000–present <nl> <fcel> 2 <fcel> Clint_Dempsey <fcel> 36 <fcel> 103 <fcel> 2004–present <nl> <fcel> 3 <fcel> Eric_Wynalda <fcel> 34 <fcel> 106 <fcel> 1990–2000 <nl> <fcel> 4 <fcel> Brian_McBride <fcel> 30 <fcel> 95 <fcel> 1993– 2006 <nl> <fcel> 5 <fcel> Joe-Max_Moore <fcel> 24 <fcel> 100 <fcel> 1992–2002 <nl> <fcel> 6T <fcel> Jozy_Altidore <fcel> 21 <fcel> 67 <fcel> 2007–present <nl> <fcel> 6T <fcel> Bruce_Murray <fcel> 21 <fcel> 86 <fcel> 1985–1993 <nl> <fcel> 8 <fcel> Eddie_Johnson <fcel> 19 <fcel> 62 <fcel> 2004–present <nl> <fcel> 9T <fcel> Earnie_Stewart <fcel> 17 <fcel> 101 <fcel> 1990–2004 <nl> <fcel> 9T <fcel> DaMarcus_Beasley <fcel> 17 <fcel> 114 <fcel> 2001–present <nl> </otsl>
Input Question
Who scored more goals: clint dempsey or eric wynalda?
What was the return on assets in plans for the pension cost in 2011
Answer from TARQA
eric wynalda Groundtruth Answer
Clint Dempsey
(b) The predictions differ from the ground truth
Figure 11. Qualitative examples from the WTQ dataset for TabQA tasks, illustrating answers generated by TAR QA-OTSL.
Input Table Image
Input Question
Answer from TARQA
What was the total number of shares purchased in the period from 10/01/18 to 10/31/18?
36,701
What was the return on assets in plans for the pension cost in 2011
Groundtruth Answer
36,701
(a) The predicted answers coincide with the ground truth
Input Table Image
Input Question What is the valuation technique used for Impaired loans? What was the return on assets in plans for the pension cost in 2011
Answer from TARQA Fair value of underlying collateral
Groundtruth Answer Fair value of underlying collateral
(b) The predicted answers coincide with the ground truth
Figure 12. Illustrative TabVQA examples from the FintabnetQA dataset showcasing the performance of DELTA+TAR QA-OTSL.
Input Table Image
Input Question
Answer from TARQA
What was the total for the year ended December 31, 2013?
$1,080,544.00
What was the return on assets in plans for the pension cost in 2011
Groundtruth Answer
$218 (a) The ground truth and predicted answers are diverging from each other.
Input Table Image
Input Question
Answer from TARQA
How much was the Restricted Share/Unit Awards in 2006?
fas
What was the return on assets in plans for the pension cost in 2011
Groundtruth Answer
7.5 million (b) The ground truth and predicted answers are diverging from each other.
Figure 13. Illustrative TabVQA examples from the FintabnetQA dataset showcasing the performance of DELTA+TAR QA-OTSL.