Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# PixT3: Pixel-based Table-To-Text Generation
|
2 |
+
This repository contains code and datasets for the ACL 2024 paper [PixT3: Pixel-based Table-To-Text Generation](https://aclanthology.org/2024.acl-long.364/).
|
3 |
+
|
4 |
+
We release PixT3 model checkpoints for the TControl, LControl, and OpenE settings as well as
|
5 |
+
ToTTo, Controlled Logic2Text, and SLC pretraining datasets alongside their corresponding rendered tables
|
6 |
+
for each setting. This repository also contains the code to train and evaluate these models.
|
7 |
+
|
8 |
+
## Datasets
|
9 |
+
Download the ready-to-use datasets in _Files and versions_.
|
10 |
+
|
11 |
+
## Model checkpoints
|
12 |
+
Download model checkpoints in _Files and versions_.
|
13 |
+
|
14 |
+
Model names:
|
15 |
+
- **PixT3 (TControl):** `pixt3_tcontrol`
|
16 |
+
- **PixT3 (LControl):** `pixt3_lcontrol`
|
17 |
+
- **PixT3 (OpenE):** `pixt3_opene`
|
18 |
+
- **PixT3 (SLC):** `pixt3_slc` This is the model pretrained with the Structure Learning Curriculum. It mainly serves as initialization checkpoint for PixT3 (LControl) and PixT3 (OpenE).
|
19 |
+
|
20 |
+
## Reference
|
21 |
+
If you find this project useful, please cite it using the following format
|
22 |
+
|
23 |
+
```
|
24 |
+
@inproceedings{alonso-etal-2024-pixt3,
|
25 |
+
title = "{P}ix{T}3: Pixel-based Table-To-Text Generation",
|
26 |
+
author = "Alonso, I{\~n}igo and
|
27 |
+
Agirre, Eneko and
|
28 |
+
Lapata, Mirella",
|
29 |
+
editor = "Ku, Lun-Wei and
|
30 |
+
Martins, Andre and
|
31 |
+
Srikumar, Vivek",
|
32 |
+
booktitle = "Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
|
33 |
+
month = aug,
|
34 |
+
year = "2024",
|
35 |
+
address = "Bangkok, Thailand",
|
36 |
+
publisher = "Association for Computational Linguistics",
|
37 |
+
url = "https://aclanthology.org/2024.acl-long.364",
|
38 |
+
pages = "6721--6736",
|
39 |
+
}
|
40 |
+
```
|