Saneem Ahmed Chemmengath
commited on
Commit
·
fce0132
1
Parent(s):
ef9b102
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
---
|
4 |
+
|
5 |
+
# Model description
|
6 |
+
|
7 |
+
This is an [t5-base](https://huggingface.co/t5-base) model, finetuned to generate questions given a table using [WikiSQL](https://huggingface.co/datasets/wikisql) dataset. It was trained to take the SQL, answer and column header of a table as input to generate questions. For more information check our T3QA [paper](https://aclanthology.org/2021.emnlp-main.342/) from EMNLP 2021.
|
8 |
+
|
9 |
+
# Overview
|
10 |
+
|
11 |
+
*Language model*: t5-base \
|
12 |
+
*Language*: English
|
13 |
+
*Task*: Table Question Generation \
|
14 |
+
*Data*: WikiSQL
|
15 |
+
|
16 |
+
# Intented use and limitations
|
17 |
+
One can use this model to generate questions given a table. Biases associated with pre-training of T5 and WikiSQL dataset may be present.
|
18 |
+
|
19 |
+
## Usage
|
20 |
+
One can use this model directly in the [PrimeQA](https://github.com/primeqa/primeqa) framework as in this example [notebook](https://github.com/primeqa/primeqa/blob/tableqg/notebooks/qg/tableqg_inference.ipynb).
|
21 |
+
|
22 |
+
## Citation
|
23 |
+
```bibtex
|
24 |
+
@inproceedings{chemmengath2021topic,
|
25 |
+
title={Topic Transferable Table Question Answering},
|
26 |
+
author={Chemmengath, Saneem and Kumar, Vishwajeet and
|
27 |
+
Bharadwaj, Samarth and Sen, Jaydeep and
|
28 |
+
Canim, Mustafa and Chakrabarti, Soumen and
|
29 |
+
Gliozzo, Alfio and Sankaranarayanan, Karthik},
|
30 |
+
booktitle={Proceedings of the 2021 Conference on
|
31 |
+
Empirical Methods in Natural Language Processing},
|
32 |
+
pages={4159--4172},
|
33 |
+
year={2021}
|
34 |
+
}
|
35 |
+
```
|
36 |
+
|