File size: 2,508 Bytes
e5847cc
a86181b
 
 
 
 
 
 
 
 
 
 
 
e5847cc
 
a86181b
e5847cc
a86181b
862015b
 
a86181b
 
 
 
 
862015b
 
 
 
 
 
 
 
a86181b
 
 
 
 
 
 
 
 
 
862015b
a86181b
862015b
 
5ce25af
862015b
5ce25af
862015b
 
a86181b
 
862015b
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
license: mit
task_categories:
- table-question-answering
language:
- en
tags:
- rag
- tables
- multi-table
- question-answering
- fact-checking
- llm
configs:
- config_name: table
  data_files: tabfact_table.jsonl
- config_name: test_query
  data_files: tabfact_query.jsonl
---

πŸ“„ [RAG over Tables: Hierarchical Memory Index, Multi-Stage Retrieval, and Benchmarking](https://arxiv.org/abs/2504.01346) | πŸ‘¨πŸ»β€πŸ’» [Code](https://github.com/jiaruzouu/T-RAG) | πŸ€— [MultiTableQA Hub Collection](https://huggingface.co/collections/jiaruz2/multitableqa-68dc8d850ea7e168f47cecd8)

This repository contains **MultiTableQA-TabFact**, one of the five datasets released as part of the comprehensive **MultiTableQA** benchmark. MultiTableQA-TabFact focuses on **table fact-checking** tasks. The overall MultiTableQA benchmark extends the traditional single-table QA setting into a multi-table retrieval and question answering benchmark, enabling more realistic and challenging evaluations.

Other datasets in the MultiTableQA benchmark include:
| Dataset              | Link |
|-----------------------|------|
| MultiTableQA-TATQA    | πŸ€— [dataset link](https://huggingface.co/datasets/jiaruz2/MultiTableQA_TATQA)   |
| MultiTableQA-TabFact  | πŸ€— [dataset link](https://huggingface.co/datasets/jiaruz2/MultiTableQA_TabFact) |
| MultiTableQA-SQA      | πŸ€— [dataset link](https://huggingface.co/datasets/jiaruz2/MultiTableQA_SQA)     |
| MultiTableQA-WTQ      | πŸ€— [dataset link](https://huggingface.co/datasets/jiaruz2/MultiTableQA_WTQ)     |
| MultiTableQA-HybridQA | πŸ€— [dataset link](https://huggingface.co/datasets/jiaruz2/MultiTableQA_HybridQA)|

---

### Sample Usage

To download and preprocess the **MultiTableQA** benchmark, navigate to the `table2graph` directory in the code repository and run the `prepare_data.sh` script:

```bash
cd table2graph
bash scripts/prepare_data.sh
```

This script will automatically fetch the source tables, apply decomposition (row/column splitting), and generate the benchmark splits.

---
# Citation

If you find our work useful, please cite:

```bibtex
@misc{zou2025rag,
      title={RAG over Tables: Hierarchical Memory Index, Multi-Stage Retrieval, and Benchmarking}, 
      author={Jiaru Zou and Dongqi Fu and Sirui Chen and Xinrui He and Zihao Li and Yada Zhu and Jiawei Han and Jingrui He},
      year={2025},
      eprint={2504.01346},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2504.01346}, 
}
```