Datasets:

Modalities:
Image
Languages:
English
ArXiv:
License:
katebor commited on
Commit
dfb68c1
·
verified ·
1 Parent(s): 73481cd

Create README.md

Browse files
Files changed (1) hide show
  1. numericNLG/README.md +36 -0
numericNLG/README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # numericNLG subset
2
+
3
+ **[numericNLG](https://aclanthology.org/2021.acl-long.115/** a dataset focusing on the T2T generation task with numerical reasoning based on tables and their textual descriptions extracted from ACL Anthology articles.
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_id_paper </code> - (str) table and source paper IDs;
11
+ - <code> caption </code> - (str) caption of a given table;
12
+ - <code> row_header_level </code> - (int);
13
+ - <code> row_headers </code> - (List[List[str]]) table row header names;
14
+ - <code> column_header_level </code> - (int);
15
+ - <code> column_headers </code> - (List[List[str]]) table column header names;
16
+ - <code> contents </code> - (List[List[str]]) table row values;
17
+ - <code> metrics_loc </code> - (str);
18
+ - <code> metrics_type </code> - (List[str]);
19
+ - <code> target_entity </code> - (List[str]);
20
+ - <code> table_html </code> - (str) table in HTML format;
21
+ - <code> table_name </code> - (str) title of a table (e.g., Table 5);
22
+ - <code> table_id </code> - (str) ID of a given table;
23
+ - <code> paper_id </code> - (str) ID of the source paper;
24
+ - <code> page_no </code> - (str);
25
+ - <code> dir </code> - (str);
26
+ - <code> description </code> - (str) gold description of a table;
27
+ - <code> class_sentence </code> - (List[str]);
28
+ - <code> sentences </code> - (List[str]);
29
+ - <code> header_mention </code> - (List[str]);
30
+ - <code> valid </code> - (int);
31
+ - <code> image_id </code> - (str) table image name;
32
+ - <code> venue </code> - (str) paper source (arXiv or acl);
33
+ - <code> license </code> - (str) license type of the source paper;
34
+ - <code> table_xml </code> - (str) table in XML format;
35
+ - <code> table_latex </code> - (str) table in LaTeX format;
36
+ - <code> table_html_cleaned </code> - (str) HTML of a table cleaned from irrelevant LaTeXML tags.