Create README.md
Browse files- Logic2Text/README.md +34 -0
Logic2Text/README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Logic2Text subset
|
2 |
+
|
3 |
+
**[Logic2Text](https://aclanthology.org/2020.findings-emnlp.190/)** features open–domain Wikipedia tables manually annotated with descriptions of common logic types and their underlying logical forms for the T2T task.
|
4 |
+
|
5 |
+
Images of tables are stored in the <code>.zip</code> folders, while textual formats of tables and all metadata are availabe in <code>.json</code> files.
|
6 |
+
|
7 |
+
## Data Fields
|
8 |
+
|
9 |
+
- <code> instance_id </code> - (str) unique ID of a given instance;
|
10 |
+
- <code> topic </code> - (str);
|
11 |
+
- <code> wiki </code> - (str) URL of the Wikipedia page;
|
12 |
+
- <code> url </code> - (str);
|
13 |
+
- <code> action </code> - (str);
|
14 |
+
- <code> sent </code> - (str) gold statement;
|
15 |
+
- <code> annotation </code> - (dict);
|
16 |
+
- <code> logic </code> - (dict);
|
17 |
+
- <code> logic_str </code> - (str) logical form;
|
18 |
+
- <code> interpret </code> - (str)
|
19 |
+
- <code> num_func </code> - (str);
|
20 |
+
- <code> nid</code> -(str);
|
21 |
+
- <code> g_ids </code> - (dict);
|
22 |
+
- <code> g_ids_features </code> - (dict);
|
23 |
+
- <code> g_adj </code> - (dict);
|
24 |
+
- <code> table_header </code> - (List[str]) table header names;
|
25 |
+
- <code> table_cont </code> - List[List[str]])table row values;
|
26 |
+
- <code> table_id </code> - (str) unique ID of a given table;
|
27 |
+
- <code> title </code> - (str) table title;
|
28 |
+
- <code> html_content </code> - (str) source HTML page of a table;
|
29 |
+
- <code> snapshot_timestamp </code> - (str) timestamp of the HTML page version in Wikipedia history;
|
30 |
+
- <code> filename </code> - (str)
|
31 |
+
- <code> image_name </code> - (str) table image name;
|
32 |
+
- <code> table_xml </code> - (str) table in XML format;
|
33 |
+
- <code> table_html </code> - (str) table in HTML format;
|
34 |
+
- <code> table_latex </code> - (str) table in LaTeX format.
|