voidful commited on
Commit
61955a5
·
1 Parent(s): 8a0eb13

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +197 -2
README.md CHANGED
@@ -43,6 +43,201 @@ dataset_info:
43
  download_size: 81569780
44
  dataset_size: 133303906
45
  ---
46
- # Dataset Card for "EQG-RACE-PLUS"
47
 
48
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  download_size: 81569780
44
  dataset_size: 133303906
45
  ---
46
+ # Dataset Card for "QGG-RACE Dataset"
47
 
48
+ Table of Contents
49
+
50
+ - Dataset Description
51
+ - Dataset Summary
52
+ - Supported Tasks and Leaderboards
53
+ - Languages
54
+ - Dataset Structure
55
+ - Data Instances
56
+ - Data Fields
57
+ - Data Splits
58
+ - Dataset Creation
59
+ - Curation Rationale
60
+ - Source Data
61
+ - Annotations
62
+ - Personal and Sensitive Information
63
+ - Considerations for Using the Data
64
+ - Social Impact of Dataset
65
+ - Discussion of Biases
66
+ - Other Known Limitations
67
+ - Additional Information
68
+ - Dataset Curators
69
+ - Licensing Information
70
+ - Citation Information
71
+ - Contributions
72
+
73
+ ## Dataset Description
74
+
75
+ - GitHub Repository: N/A
76
+ - Paper: N/A
77
+ - Leaderboard: N/A
78
+ - Point of Contact: N/A
79
+
80
+ ## Dataset Summary
81
+
82
+ QGG-RACE Dataset is a subset of RACE, containing three types of questions: Factoid, Cloze, and Summarization.
83
+
84
+ Dataset Download: [GitHub Release](https://github.com/p208p2002/QGG-RACE-dataset/releases/download/v1.0/qgg-dataset.zip)
85
+
86
+ Data Statistics:
87
+
88
+ Types | Examples | Train | Dev | Test
89
+ ------------- | ------------------------------------------ | ----- | ---- | ----
90
+ Cloze | Yingying is Wangwang's _ . | 43167 | 2405 | 2462
91
+ Factiod | What can Mimi do? | 18405 | 1030 | 944
92
+ Summarization | According to this passage we know that _ . | 3004 | 175 | 184
93
+
94
+
95
+ ## Supported Tasks and Leaderboards
96
+
97
+ - Question Generation
98
+ - Reading Comprehension
99
+ - Text Summarization
100
+
101
+ ## Languages
102
+
103
+ The dataset is in English.
104
+
105
+ ## Dataset Structure
106
+
107
+ ### Data Instances
108
+
109
+ An example data instance from the dataset is shown below:
110
+
111
+ ```json
112
+ {
113
+ "answers": [
114
+ "D",
115
+ "A",
116
+ "B",
117
+ "C"
118
+ ],
119
+ "options": [
120
+ [
121
+ "States",
122
+ "Doubts",
123
+ "Confirms",
124
+ "Removes"
125
+ ],
126
+ [
127
+ "shows the kind of male birds females seek out.",
128
+ "indicates the wandering albatross is the most faithful.",
129
+ "is based on Professor Stutchbury's 20 years' research.",
130
+ "suggests that female birds select males near their home."
131
+ ],
132
+ [
133
+ "young birds' quality depends on their feather.",
134
+ "some male birds care for others' young as their own.",
135
+ "female birds go to find males as soon as autumn comes.",
136
+ "female birds are responsible for feeding the hungry babies."
137
+ ],
138
+ [
139
+ "A book about love-birds.",
140
+ "Birds' living habits and love life",
141
+ "The fact that birds don't love their mates forever.",
142
+ "The factors that influence birds to look for another mate."
143
+ ]
144
+ ],
145
+ "questions": [
146
+ "What does the underline word \"dispels\" mean?",
147
+ "The book The Private Lives of Birds _ .",
148
+ "According to the passage, we can infer that _ .",
149
+ "What is the passage mainly about?"
150
+ ],
151
+ "article": "Birds are not as loyal to their partners as you might think ...",
152
+ "id": "high11327.txt",
153
+ "factoid_questions": [
154
+ "What does the underline word \"dispels\" mean?"
155
+ ],
156
+ "cloze_questions": [
157
+ "The book The Private Lives of Birds _ ."
158
+ ],
159
+ "summarization_questions": [
160
+ "According to the passage, we can infer that _ ."
161
+ ]
162
+ }
163
+
164
+ ```
165
+
166
+ ## Data Fields
167
+
168
+ - id: Unique identifier for the example.
169
+ - article: The main text passage.
170
+ - questions: List of questions related to the passage.
171
+ - options: List of answer options for each question.
172
+ - answers: Indexes of the correct answers for each question.
173
+ - factoid_questions: List of factoid questions.
174
+ - cloze_questions: List of cloze questions.
175
+ - summarization_questions: List of summarization questions.
176
+
177
+ ### Data Splits
178
+
179
+ - Train: Contains 65,576 examples.
180
+ - Dev: Contains 3,610 examples.
181
+ - Test: Contains 3,590 examples.
182
+
183
+ ## Dataset Creation
184
+
185
+ ### Curation Rationale
186
+
187
+ QGG-RACE dataset is created as a subset of RACE, focusing on three types of questions: Factoid, Cloze, and Summarization. This dataset is intended to facilitate research in question generation and reading comprehension.
188
+
189
+ ### Source Data
190
+
191
+ #### Initial Data Collection and Normalization
192
+
193
+ QGG-RACE dataset is derived from RACE dataset.
194
+
195
+ #### Who are the source language producers?
196
+
197
+ The source language producers are the authors of the RACE dataset.
198
+
199
+ ### Annotations
200
+
201
+ #### Annotation process
202
+
203
+ The dataset is annotated with questions and their corresponding answer options.
204
+
205
+ #### Who are the annotators?
206
+
207
+ The annotators are the authors of the RACE dataset.
208
+
209
+ ### Personal and Sensitive Information
210
+
211
+ The dataset does not contain any personal or sensitive information.
212
+
213
+ ## Considerations for Using the Data
214
+
215
+ ### Social Impact of Dataset
216
+
217
+ The QGG-RACE dataset can be used for research in question generation and reading comprehension, leading to improvements in these fields.
218
+
219
+ ### Discussion of Biases
220
+
221
+ The dataset may inherit some biases from the RACE dataset as it is a subset of it.
222
+
223
+ ### Other Known Limitations
224
+
225
+ No other known limitations.
226
+
227
+ ## Additional Information
228
+
229
+ ### Dataset Curators
230
+
231
+ The QGG-RACE dataset is curated by the authors of the QGG-RACE dataset GitHub repository.
232
+
233
+ ### Licensing Information
234
+
235
+ The dataset is released under the [CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/).
236
+
237
+ ### Citation Information
238
+
239
+ No citation information is available for the QGG-RACE dataset.
240
+
241
+ ### Contributions
242
+
243
+ Thanks to @p208p2002 for creating the QGG-RACE dataset.