MicPie commited on
Commit
d5a5d98
1 Parent(s): 6fb10df

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +183 -0
README.md ADDED
@@ -0,0 +1,183 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - found
6
+ languages:
7
+ - en
8
+ license:
9
+ - apache-2.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: AdapTable
13
+ size_categories:
14
+ - 100K<n<1M
15
+ source_datasets: []
16
+ task_categories:
17
+ - multiple-choice
18
+ - question-answering
19
+ - zero-shot-classification
20
+ - text2text-generation
21
+ - table-question-answering
22
+ - text-generation
23
+ - text-classification
24
+ - tabular-classification
25
+ task_ids:
26
+ - multiple-choice-qa
27
+ - extractive-qa
28
+ - open-domain-qa
29
+ - closed-domain-qa
30
+ - closed-book-qa
31
+ - open-book-qa
32
+ - language-modeling
33
+ - multi-class-classification
34
+ - natural-language-inference
35
+ - topic-classification
36
+ - multi-label-classification
37
+ - tabular-multi-class-classification
38
+ - tabular-multi-label-classification
39
+ ---
40
+
41
+
42
+ # Dataset Card for "AdapTable" - Dataset of Few-shot Tasks from Tables
43
+
44
+ ## Table of Contents
45
+ - [Dataset Description](#dataset-description)
46
+ - [Dataset Summary](#dataset-summary)
47
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
48
+ - [Languages](#languages)
49
+ - [Dataset Structure](#dataset-structure)
50
+ - [Data Instances](#data-instances)
51
+ - [Data Fields](#data-instances)
52
+ - [Data Splits](#data-instances)
53
+ - [Dataset Creation](#dataset-creation)
54
+ - [Curation Rationale](#curation-rationale)
55
+ - [Source Data](#source-data)
56
+ - [Annotations](#annotations)
57
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
58
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
59
+ - [Social Impact of Dataset](#social-impact-of-dataset)
60
+ - [Discussion of Biases](#discussion-of-biases)
61
+ - [Other Known Limitations](#other-known-limitations)
62
+ - [Additional Information](#additional-information)
63
+ - [Dataset Curators](#dataset-curators)
64
+ - [Licensing Information](#licensing-information)
65
+ - [Citation Information](#citation-information)
66
+
67
+ ## Dataset Description
68
+
69
+ - **Homepage:** [Needs More Information]
70
+ - **Repository:** https://github.com/JunShern/few-shot-pretraining
71
+ - **Paper:** Exploring Few-Shot Adaptation of Language Models with Tables
72
+ - **Leaderboard:** [Needs More Information]
73
+ - **Point of Contact:** junshern@nyu.edu, perez@nyu.edu
74
+
75
+ ### Dataset Summary
76
+
77
+ The AdapTable dataset consists consists of tables that naturally occur on the web, that are formatted as few-shot tasks for fine-tuning language models to improve their few-shot performance.
78
+
79
+ Starting from the initial WTC corpus of 50M tables, we apply our tables-to-tasks procedure to produce our resulting dataset, [AdapTable(-full)](https://huggingface.co/datasets/MicPie/adaptable_full), which comprises 413,350 tasks from 23,744 unique websites.
80
+
81
+ We additionally export a version [AdapTable-unique](https://huggingface.co/datasets/MicPie/adaptable_unique) for comparison. This is the same as [AdapTable(-full)](https://huggingface.co/datasets/MicPie/adaptable_full) but filtered to have a maximum of one task per website. AdapTable-unique contains exactly 23,744 tasks from 23,744 websites.
82
+
83
+ ### Supported Tasks and Leaderboards
84
+
85
+ Since the tables come from the web, the distribution of tasks and topics is very broad. The shape of our dataset is very wide, i.e., we have 1000's tasks, while each task has only a few examples, compared to most current NLP datasets which are very deep, i.e., 10s of tasks with many examples. This implies that our dataset covers a broad range of potential tasks, e.g., multiple-choice, question-answering, table-question-answering, text-classification, etc.
86
+
87
+ The intended use of this dataset is to improve few-shot performance by finetuning/pretraining onour dataset.
88
+
89
+ ### Languages
90
+
91
+ English
92
+
93
+ ## Dataset Structure
94
+
95
+ ### Data Instances
96
+
97
+ Each table, i.e., task is represented as a json-lines file and consists of several few-shot examples. Each example is a dictionary containing a field 'task', which identifies the task, followed by an 'input', 'options', and 'output' field. The 'input' field contains several column elements of the same row in the table, while the 'output' field is a target which represents an individual column of the same row. Each task contains several such examples which can be concatenated as a few-shot task. In the case of multiple choice classification, the 'options' field contains the possible classes that a model needs to choose from.
98
+
99
+ There are also additional meta-data fields such as 'pageTitle', 'title', 'outputColName', 'url', 'wdcFile'.
100
+
101
+ ### Data Fields
102
+
103
+ 'task': task identifier
104
+
105
+ 'input': column elements of a specific row in table.
106
+
107
+ 'options': for multiple choice classification, it provides the options to choose from.
108
+
109
+ 'output': target column element of same row as input.
110
+
111
+ 'pageTitle': the title of the page containing the table.
112
+
113
+ 'outputColName': output column name
114
+
115
+ 'url': url to the website containing the table
116
+
117
+ 'wdcFile': WDC Web Table Corpus file
118
+
119
+ ### Data Splits
120
+
121
+ AdapTable-unique does not come with additional data splits.
122
+
123
+ ## Dataset Creation
124
+
125
+ ### Curation Rationale
126
+
127
+ How do we convert tables to few-shot tasks?
128
+ Unlike unstructured text, structured data in the form of tables lends itself easily to the few-shot task format. Given a table where each row is an instance of a similar class and the columns describe the attributes of each instance, we can turn each row into a task example to predict one attribute given the others. When the table has more than one row, we instantly have multiple examples of this task by using each row as a single example, and thus each table becomes a few-shot dataset for a particular task.
129
+
130
+ The few-shot setting in this setting is significant: Tables often do not come with clear instructions for each field, so tasks may be underspecified if prompted in a zero-shot manner, but the intended task becomes clearer when examples are provided. This makes a good two-way match: The few-shot format is a perfect setup for table learning, and tables provide a natural dataset for few-shot training.
131
+
132
+ ### Source Data
133
+
134
+ #### Initial Data Collection and Normalization
135
+
136
+ The data processing pipelines is explained in detail in section 2.3 of our publication
137
+
138
+ #### Who are the source language producers?
139
+
140
+ The dataset is extracted from [WDC Web Table Corpora](http://webdatacommons.org/webtables/).
141
+
142
+ ### Annotations
143
+
144
+ #### Annotation process
145
+
146
+ No manual annotation process used.
147
+
148
+ #### Who are the annotators?
149
+
150
+ n/a
151
+
152
+ ### Personal and Sensitive Information
153
+
154
+ The data was extracted from [WDC Web Table Corpora](http://webdatacommons.org/webtables/), which in turn extracted tables from the [Common Crawl](https://commoncrawl.org/). We did not filter the data in any way. Thus any user identities or otherwise sensitive information (e.g., data that reveals racial or ethnic origins, sexual orientations, religious beliefs, political opinions or union memberships, or locations; financial or health data; biometric or genetic data; forms of government identification, such as social security numbers; criminal history, etc.) might be contained in our dataset.
155
+
156
+ ## Considerations for Using the Data
157
+
158
+ ### Social Impact of Dataset
159
+
160
+ The purpose of this dataset is to help develop models that are better at few-shot learning and have higher few-shot performance by fine-tuning few-shot tasks extracted from tables.
161
+
162
+ While tables have a similar structure to few-shot tasks and we do see an improved performance on few-shot tasks in our paper, we want to make clear that finetuning on tables also has its risks. First of all, since the tables are extracted from the web, they may contain user identities or otherwise sensitive information which a model might reveal at inference, or which could influence the learning process of a model in a negative way. Second, since tables are very diverse in nature, the model also trains on low-quality data or data with an unusual structure. While it is interesting that training on such data improves few-shot performance on downstream tasks, this could also imply that the model learns concepts that are very dissimilar to human concepts that would be useful for a certain downstream task. In other words, it is possible that the model learns weird things that are helpful on the evaluated downstream tasks, but might lead to bad out-of-distribution behavior.
163
+
164
+ ### Discussion of Biases
165
+
166
+ Since our dataset contains tables that are scraped from the web, it will also contain many toxic, racist, sexist, and otherwise harmful biases and texts. We have not run any analysis on the biases prevalent in our datasets. Neither have we explicitly filtered the content for toxic content.
167
+ This implies that a model trained on our dataset will reinforce harmful biases and toxic text that exist in our dataset.
168
+
169
+ ### Other Known Limitations
170
+
171
+ No additional known limitations.
172
+
173
+ ## Additional Information
174
+
175
+ ### Dataset Curators
176
+ Jun Shern Chan, Michael Pieler, Jonathan Jao, Jérémy Scheurer, Ethan Perez
177
+
178
+ ### Licensing Information
179
+ Apache 2.0
180
+
181
+ ### Citation Information
182
+
183
+ [Needs More Information]