MicPie commited on
Commit
ea1408e
1 Parent(s): 4792bd3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -73,7 +73,7 @@ task_ids:
73
 
74
  ### Dataset Summary
75
 
76
- The AdapTable dataset consists of tables that naturally occur on the web and that are formatted as few-shot tasks for fine-tuning language models to improve their few-shot performance.
77
 
78
  There are several dataset versions available:
79
 
@@ -81,9 +81,9 @@ There are several dataset versions available:
81
 
82
  * [AdapTable-unique](https://huggingface.co/datasets/MicPie/adaptable_unique): 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](https://huggingface.co/datasets/MicPie/adaptable_unique) contains exactly 23,744 tasks from 23,744 websites.
83
 
84
- * [AdapTable-5k](https://huggingface.co/datasets/MicPie/adaptable_5k): This dataset uses 5k random tables from the full dataset.
85
 
86
- * AdapTable data subsets based on a manual human quality rating:
87
  * [AdapTable-rated-low](https://huggingface.co/datasets/MicPie/adaptable_rated-low)
88
  * [AdapTable-rated-medium](https://huggingface.co/datasets/MicPie/adaptable_rated-medium)
89
  * [AdapTable-rated-high](https://huggingface.co/datasets/MicPie/adaptable_rated-high)
@@ -160,7 +160,7 @@ English
160
 
161
  ### Data Instances
162
 
163
- 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.
164
 
165
  There are also additional meta-data fields such as 'pageTitle', 'title', 'outputColName', 'url', 'wdcFile'.
166
 
 
73
 
74
  ### Dataset Summary
75
 
76
+ The AdapTable dataset consists of web tables formatted as few-shot tasks for fine-tuning language models to improve their few-shot performance.
77
 
78
  There are several dataset versions available:
79
 
 
81
 
82
  * [AdapTable-unique](https://huggingface.co/datasets/MicPie/adaptable_unique): 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](https://huggingface.co/datasets/MicPie/adaptable_unique) contains exactly 23,744 tasks from 23,744 websites.
83
 
84
+ * [AdapTable-5k](https://huggingface.co/datasets/MicPie/adaptable_5k): This dataset contains 5k random tables from the full dataset.
85
 
86
+ * AdapTable data subsets based on a manual human quality rating (please see our publication for details of the ratings):
87
  * [AdapTable-rated-low](https://huggingface.co/datasets/MicPie/adaptable_rated-low)
88
  * [AdapTable-rated-medium](https://huggingface.co/datasets/MicPie/adaptable_rated-medium)
89
  * [AdapTable-rated-high](https://huggingface.co/datasets/MicPie/adaptable_rated-high)
 
160
 
161
  ### Data Instances
162
 
163
+ Each task is represented as a jsonline 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.
164
 
165
  There are also additional meta-data fields such as 'pageTitle', 'title', 'outputColName', 'url', 'wdcFile'.
166