Update README.md
Browse files
README.md
CHANGED
@@ -47,7 +47,7 @@ size_categories:
|
|
47 |
# Dataset Card for "atis-tableQA"
|
48 |
|
49 |
# Usage
|
50 |
-
```
|
51 |
import pandas as pd
|
52 |
from datasets import load_dataset
|
53 |
|
@@ -63,4 +63,24 @@ for sample in atis_tableQA['train']:
|
|
63 |
target = sample["target"]
|
64 |
```
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
|
|
47 |
# Dataset Card for "atis-tableQA"
|
48 |
|
49 |
# Usage
|
50 |
+
```python
|
51 |
import pandas as pd
|
52 |
from datasets import load_dataset
|
53 |
|
|
|
63 |
target = sample["target"]
|
64 |
```
|
65 |
|
66 |
+
# BibTeX entry and citation info
|
67 |
+
```
|
68 |
+
@inproceedings{pal-etal-2023-multitabqa,
|
69 |
+
title = "{M}ulti{T}ab{QA}: Generating Tabular Answers for Multi-Table Question Answering",
|
70 |
+
author = "Pal, Vaishali and
|
71 |
+
Yates, Andrew and
|
72 |
+
Kanoulas, Evangelos and
|
73 |
+
de Rijke, Maarten",
|
74 |
+
booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
|
75 |
+
month = jul,
|
76 |
+
year = "2023",
|
77 |
+
address = "Toronto, Canada",
|
78 |
+
publisher = "Association for Computational Linguistics",
|
79 |
+
url = "https://aclanthology.org/2023.acl-long.348",
|
80 |
+
doi = "10.18653/v1/2023.acl-long.348",
|
81 |
+
pages = "6322--6334",
|
82 |
+
abstract = "Recent advances in tabular question answering (QA) with large language models are constrained in their coverage and only answer questions over a single table. However, real-world queries are complex in nature, often over multiple tables in a relational database or web page. Single table questions do not involve common table operations such as set operations, Cartesian products (joins), or nested queries. Furthermore, multi-table operations often result in a tabular output, which necessitates table generation capabilities of tabular QA models. To fill this gap, we propose a new task of answering questions over multiple tables. Our model, MultiTabQA, not only answers questions over multiple tables, but also generalizes to generate tabular answers. To enable effective training, we build a pre-training dataset comprising of 132,645 SQL queries and tabular answers. Further, we evaluate the generated tables by introducing table-specific metrics of varying strictness assessing various levels of granularity of the table structure. MultiTabQA outperforms state-of-the-art single table QA models adapted to a multi-table QA setting by finetuning on three datasets: Spider, Atis and GeoQuery.",
|
83 |
+
}
|
84 |
+
```
|
85 |
+
|
86 |
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|