Create README.md
Browse files- SciGen/README.md +26 -0
SciGen/README.md
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# SciGen subset
|
2 |
+
|
3 |
+
**[SciGen](https://arxiv.org/abs/2104.08296)** a corpus designed for reasoning-aware T2T generation, comprising tables from arXiv papers across fields such as Computation and Language, Machine Learning, Computer Science, Computational Geometry, etc.
|
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> paper </code> - (str) title of the source paper;
|
11 |
+
- <code> paper_id </code> - (str) ID of the source paper;
|
12 |
+
- <code> table_caption </code> - (str) caption of a given table;
|
13 |
+
- <code> table_column_names </code> - (List[str]) table header names;
|
14 |
+
- <code> table_content_values </code> - (List[List[str]]) table row values;
|
15 |
+
- <code> text </code> - (str) gold description of a table;
|
16 |
+
- <code> image_id </code> - (str) table image name;
|
17 |
+
- <code> license </code> - (str) license type of the source paper;
|
18 |
+
- <code> venue </code> - (str) paper source (arXiv or acl);
|
19 |
+
- <code> table_latex </code> - (str) table in LaTeX format;
|
20 |
+
- <code> table_html </code> - (str) table in HTML format;
|
21 |
+
- <code> table_xml </code> - (str) table in XML format;
|
22 |
+
- <code> table_html_cleaned </code> - (str) HTML of a table cleaned from irrelevant LaTeXML tags;
|
23 |
+
- <code> subset </code> - (str) cl or other subset from SciGen;
|
24 |
+
- <code> field </code> - (str) field tag for arXiv papers;
|
25 |
+
- <code> text_cleaned </code> - (str) gold description of a table without special [CONTINUE] tokens;
|
26 |
+
- <code> table_xml_cleaned </code> - (str) XML of a table cleaned from irrelevant LaTeXML tags.
|