kategaranina
commited on
Commit
·
5dfb08c
1
Parent(s):
03e445a
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
datasets:
|
4 |
+
- kasnerz/logic2text
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
---
|
8 |
+
---
|
9 |
+
license: mit
|
10 |
+
datasets:
|
11 |
+
- kasnerz/logic2text
|
12 |
+
language:
|
13 |
+
- en
|
14 |
+
---
|
15 |
+
|
16 |
+
## Model description
|
17 |
+
|
18 |
+
This is a fine-tuned [t5-base](https://huggingface.co/t5-base) model for generating logical form templates from table metadata.
|
19 |
+
It is a part of table-to-text pipeline with content selection and logical reasoning, trained on [Logic2Text dataset](https://aclanthology.org/2020.findings-emnlp.190/).
|
20 |
+
The last pipeline step is done by [kategaranina/lt2t_lf_to_text](https://huggingface.co/kategaranina/lt2t_lf_to_text) model.
|
21 |
+
For relevant code, see [LT2T repository](https://github.com/kategerasimenko/LT2T) on GitHub.
|
22 |
+
|
23 |
+
Example of input:
|
24 |
+
|
25 |
+
```
|
26 |
+
Title: wake forest demon deacons football , 1980 - 89.
|
27 |
+
Column date. Type: date. Stats: Column has all unique values, all values have one occurrence,
|
28 |
+
first: 1987-09-12, last: 1987-11-21, max diff days: 70, max diff months: 2, max diff years: 0.
|
29 |
+
Value: 09 / 12 / 1987.
|
30 |
+
...
|
31 |
+
Column location. Type: str. Stats: Column has most unique values, one value has most occurrences,
|
32 |
+
most values have one occurrence. Value: groves stadium winston - salem , nc.
|
33 |
+
...
|
34 |
+
```
|
35 |
+
|
36 |
+
Example of output:
|
37 |
+
```
|
38 |
+
round_eq { avg { all_rows ; attendance } ; X }
|
39 |
+
```
|