| # SciGen subset | |
| **[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. | |
| 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. | |
| ## Data Fields | |
| - <code> instance_id </code> - (str) unique ID of a given instance; | |
| - <code> paper </code> - (str) title of the source paper; | |
| - <code> paper_id </code> - (str) ID of the source paper; | |
| - <code> table_caption </code> - (str) caption of a given table; | |
| - <code> table_column_names </code> - (List[str]) table header names; | |
| - <code> table_content_values </code> - (List[List[str]]) table row values; | |
| - <code> text </code> - (str) gold description of a table; | |
| - <code> image_id </code> - (str) table image name; | |
| - <code> license </code> - (str) license type of the source paper; | |
| - <code> venue </code> - (str) paper source (arXiv or acl); | |
| - <code> table_latex </code> - (str) table in LaTeX format; | |
| - <code> table_html </code> - (str) table in HTML format; | |
| - <code> table_xml </code> - (str) table in XML format; | |
| - <code> table_html_cleaned </code> - (str) HTML of a table cleaned from irrelevant LaTeXML tags; | |
| - <code> subset </code> - (str) cl or other subset from SciGen; | |
| - <code> field </code> - (str) field tag for arXiv papers; | |
| - <code> text_cleaned </code> - (str) gold description of a table without special [CONTINUE] tokens; | |
| - <code> table_xml_cleaned </code> - (str) XML of a table cleaned from irrelevant LaTeXML tags. | |