Create README.md
Browse files- LogicNLG/README.md +26 -0
LogicNLG/README.md
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# LogicNLG subset
|
2 |
+
|
3 |
+
**[LogicNLG](https://aclanthology.org/2020.acl-main.708/)** a T2T dataset of open-domain tables fetched from Wikipedia and associated with manually annotated natural language statements that can be logically entailed by the given data.
|
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> table </code> - (List[List[str]]);
|
11 |
+
- <code> ref </code> - (str) gold statement;
|
12 |
+
- <code> linked_columns </code> - (List[str]);
|
13 |
+
- <code> title </code> - (str) table title;- <code> template </code> - (str) ;
|
14 |
+
- <code> template </code> - (str) statement with masked entities;
|
15 |
+
- <code> table_id </code> - (str) unique ID of a given table;
|
16 |
+
- <code> wiki_title </code> - (str) title of the source Wikipedia page;
|
17 |
+
- <code> wiki_url </code> - (str) URL of the source Wikipedia page;
|
18 |
+
- <code> table_column_names </code> - (List[str]) table header names;
|
19 |
+
- <code> table_content_values </code> - List[List[str]])table row values;
|
20 |
+
- <code> html_content </code> - (str) source HTML page of a table;
|
21 |
+
- <code> snapshot_timestamp </code> - (str) timestamp of the HTML page version in Wikipedia history;
|
22 |
+
- <code> filename </code> - (str);
|
23 |
+
- <code> image_name </code> - (str) table image name;
|
24 |
+
- <code> table_xml </code> - (str) table in XML format;
|
25 |
+
- <code> table_html </code> - (str) table in HTML format;
|
26 |
+
- <code> table_latex </code> - (str) table in LaTeX format.
|