Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
1K<n<10K
Language Creators:
found
Annotations Creators:
crowdsourced
Source Datasets:
original
ArXiv:
Tags:
License:
system HF staff commited on
Commit
f6572a3
1 Parent(s): 97d2c88

Update files from the datasets library (from 1.3.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.3.0

Files changed (1) hide show
  1. README.md +161 -0
README.md ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "qasc"
5
+
6
+ ## Table of Contents
7
+ - [Dataset Description](#dataset-description)
8
+ - [Dataset Summary](#dataset-summary)
9
+ - [Supported Tasks](#supported-tasks)
10
+ - [Languages](#languages)
11
+ - [Dataset Structure](#dataset-structure)
12
+ - [Data Instances](#data-instances)
13
+ - [Data Fields](#data-fields)
14
+ - [Data Splits Sample Size](#data-splits-sample-size)
15
+ - [Dataset Creation](#dataset-creation)
16
+ - [Curation Rationale](#curation-rationale)
17
+ - [Source Data](#source-data)
18
+ - [Annotations](#annotations)
19
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
20
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
21
+ - [Social Impact of Dataset](#social-impact-of-dataset)
22
+ - [Discussion of Biases](#discussion-of-biases)
23
+ - [Other Known Limitations](#other-known-limitations)
24
+ - [Additional Information](#additional-information)
25
+ - [Dataset Curators](#dataset-curators)
26
+ - [Licensing Information](#licensing-information)
27
+ - [Citation Information](#citation-information)
28
+ - [Contributions](#contributions)
29
+
30
+ ## [Dataset Description](#dataset-description)
31
+
32
+ - **Homepage:** [https://allenai.org/data/qasc](https://allenai.org/data/qasc)
33
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
34
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
35
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
36
+ - **Size of downloaded dataset files:** 1.54 MB
37
+ - **Size of the generated dataset:** 5.60 MB
38
+ - **Total amount of disk used:** 7.14 MB
39
+
40
+ ### [Dataset Summary](#dataset-summary)
41
+
42
+ QASC is a question-answering dataset with a focus on sentence composition. It consists of 9,980 8-way multiple-choice
43
+ questions about grade school science (8,134 train, 926 dev, 920 test), and comes with a corpus of 17M sentences.
44
+
45
+ ### [Supported Tasks](#supported-tasks)
46
+
47
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
48
+
49
+ ### [Languages](#languages)
50
+
51
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
52
+
53
+ ## [Dataset Structure](#dataset-structure)
54
+
55
+ We show detailed information for up to 5 configurations of the dataset.
56
+
57
+ ### [Data Instances](#data-instances)
58
+
59
+ #### default
60
+
61
+ - **Size of downloaded dataset files:** 1.54 MB
62
+ - **Size of the generated dataset:** 5.60 MB
63
+ - **Total amount of disk used:** 7.14 MB
64
+
65
+ An example of 'validation' looks as follows.
66
+ ```
67
+ {
68
+ "answerKey": "F",
69
+ "choices": {
70
+ "label": ["A", "B", "C", "D", "E", "F", "G", "H"],
71
+ "text": ["sand", "occurs over a wide range", "forests", "Global warming", "rapid changes occur", "local weather conditions", "measure of motion", "city life"]
72
+ },
73
+ "combinedfact": "Climate is generally described in terms of local weather conditions",
74
+ "fact1": "Climate is generally described in terms of temperature and moisture.",
75
+ "fact2": "Fire behavior is driven by local weather conditions such as winds, temperature and moisture.",
76
+ "formatted_question": "Climate is generally described in terms of what? (A) sand (B) occurs over a wide range (C) forests (D) Global warming (E) rapid changes occur (F) local weather conditions (G) measure of motion (H) city life",
77
+ "id": "3NGI5ARFTT4HNGVWXAMLNBMFA0U1PG",
78
+ "question": "Climate is generally described in terms of what?"
79
+ }
80
+ ```
81
+
82
+ ### [Data Fields](#data-fields)
83
+
84
+ The data fields are the same among all splits.
85
+
86
+ #### default
87
+ - `id`: a `string` feature.
88
+ - `question`: a `string` feature.
89
+ - `choices`: a dictionary feature containing:
90
+ - `text`: a `string` feature.
91
+ - `label`: a `string` feature.
92
+ - `answerKey`: a `string` feature.
93
+ - `fact1`: a `string` feature.
94
+ - `fact2`: a `string` feature.
95
+ - `combinedfact`: a `string` feature.
96
+ - `formatted_question`: a `string` feature.
97
+
98
+ ### [Data Splits Sample Size](#data-splits-sample-size)
99
+
100
+ | name |train|validation|test|
101
+ |-------|----:|---------:|---:|
102
+ |default| 8134| 926| 920|
103
+
104
+ ## [Dataset Creation](#dataset-creation)
105
+
106
+ ### [Curation Rationale](#curation-rationale)
107
+
108
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
109
+
110
+ ### [Source Data](#source-data)
111
+
112
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
113
+
114
+ ### [Annotations](#annotations)
115
+
116
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
117
+
118
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
119
+
120
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
121
+
122
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
123
+
124
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
125
+
126
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
127
+
128
+ ### [Discussion of Biases](#discussion-of-biases)
129
+
130
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
131
+
132
+ ### [Other Known Limitations](#other-known-limitations)
133
+
134
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
135
+
136
+ ## [Additional Information](#additional-information)
137
+
138
+ ### [Dataset Curators](#dataset-curators)
139
+
140
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
141
+
142
+ ### [Licensing Information](#licensing-information)
143
+
144
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
145
+
146
+ ### [Citation Information](#citation-information)
147
+
148
+ ```
149
+ @article{allenai:qasc,
150
+ author = {Tushar Khot and Peter Clark and Michal Guerquin and Peter Jansen and Ashish Sabharwal},
151
+ title = {QASC: A Dataset for Question Answering via Sentence Composition},
152
+ journal = {arXiv:1910.11473v2},
153
+ year = {2020},
154
+ }
155
+
156
+ ```
157
+
158
+
159
+ ### Contributions
160
+
161
+ Thanks to [@thomwolf](https://github.com/thomwolf), [@patrickvonplaten](https://github.com/patrickvonplaten), [@lewtun](https://github.com/lewtun) for adding this dataset.