Datasets:
GEM
/

Tasks:
Other
Languages:
English
Multilinguality:
unknown
Size Categories:
unknown
Language Creators:
unknown
Annotations Creators:
expert-created
Source Datasets:
original
ArXiv:
Tags:
question-generation
License:
WorkInTheDark commited on
Commit
18cbc16
1 Parent(s): 0608519

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +204 -202
README.md CHANGED
@@ -1,203 +1,205 @@
1
- ---
2
- annotations_creators:
3
- - expert-generated
4
- language_creators:
5
- - found
6
- languages:
7
- - en
8
- licenses:
9
- - unknown
10
- multilinguality:
11
- - monolingual
12
- pretty_name: FairytaleQA
13
- size_categories:
14
- - 10K<n<100K
15
- source_datasets:
16
- - original
17
- task_categories:
18
- - question-generation
19
- task_ids:
20
- - abstractive-qg
21
- ---
22
-
23
- # Dataset Card for FairytaleQA
24
-
25
- ## Table of Contents
26
- - [Dataset Description](#dataset-description)
27
- - [Dataset Summary](#dataset-summary)
28
- - [Supported Tasks](#supported-tasks-and-leaderboards)
29
- - [Languages](#languages)
30
- - [Dataset Structure](#dataset-structure)
31
- - [Data Instances](#data-instances)
32
- - [Data Fields](#data-instances)
33
- - [Data Splits](#data-instances)
34
- - [Dataset Creation](#dataset-creation)
35
- - [Curation Rationale](#curation-rationale)
36
- - [Source Data](#source-data)
37
- - [Annotations](#annotations)
38
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
39
- - [Considerations for Using the Data](#considerations-for-using-the-data)
40
- - [Social Impact of Dataset](#social-impact-of-dataset)
41
- - [Discussion of Biases](#discussion-of-biases)
42
- - [Other Known Limitations](#other-known-limitations)
43
- - [Additional Information](#additional-information)
44
- - [Dataset Curators](#dataset-curators)
45
- - [Licensing Information](#licensing-information)
46
- - [Citation Information](#citation-information)
47
-
48
- ## Dataset Description
49
-
50
- - **Homepage:** [Needs More Information]
51
- - **Repository:** https://github.com/uci-soe/FairytaleQAData
52
- - **Paper:** https://arxiv.org/abs/2203.13947
53
- - **Leaderboard:** https://paperswithcode.com/dataset/fairytaleqa
54
- - **Point of Contact:** [Ying Xu](mailto:ying.xu@uci.edu)
55
-
56
- ### Dataset Summary
57
-
58
- The FairytaleQA Dataset is an English-language dataset focusing on narrative comprehension of kindergarten to eighth-grade students. Generated by educational experts based on an evidence-based theoretical framework, FairytaleQA consists of 10,580 explicit and implicit questions derived from 278 children-friendly stories, covering seven types of narrative elements or relations. This GEM version FairytaleQA Dataset specifically supports the Question Generation task.
59
-
60
- ### Supported Tasks and Leaderboards
61
-
62
- - `question-generation`: The dataset can be used to train a model for Question Generation. The task was to generate questions corresponding to the given answers and the story context. Success on this task is typically measured by achieving a high [ROUGE](https://huggingface.co/metrics/rouge) score to the reference ground-truth questions. A [BART-based model](https://huggingface.co/facebook/bart-large) currently achieves a [ROUGE-L of 0.527/0.527](https://github.com/uci-soe/FairytaleQAData) on valid/test splits. This task has an active leaderboard which can be found at <https://paperswithcode.com/sota/question-generation-on-fairytaleqa> and ranks models based on [ROUGE](https://huggingface.co/metrics/rouge) score.
63
-
64
-
65
- ### Languages
66
-
67
- The text in the dataset is in English. The associated BCP-47 code is `en`.
68
-
69
- ## Dataset Structure
70
-
71
- ### Data Instances
72
-
73
- A typical data point comprises a question, the corresponding story content, and one answer for train split or two answers for valid/test splits. Education expert annotators labeled whether the answer is locally relevant to one story section or requires summarization capabilities from multiple story sections, and whether the answers are explicit (can be directly found in the stories) or implicit (cannot be directly found in the story text). Additionally, education expert annotators categorize the QA-pairs via 7 narrative elements from an establish framework.
74
-
75
- An example from the FairytaleQA test split looks as follows:
76
-
77
- ```
78
- {'story_name': 'self-did-it',
79
- 'content': '" what is your name ? " asked the girl from underground . " self is my name , " said the woman . that seemed a curious name to the girl , and she once more began to pull the fire apart . then the woman grew angry and began to scold , and built it all up again . thus they went on for a good while ; but at last , while they were in the midst of their pulling apart and building up of the fire , the woman upset the tar - barrel on the girl from underground . then the latter screamed and ran away , crying : " father , father ! self burned me ! " " nonsense , if self did it , then self must suffer for it ! " came the answer from below the hill .',
80
- 'answer': 'the woman told the girl her name was self .',
81
- 'question': "why did the girl's father think the girl burned herself ?",
82
- 'gem_id': 'GEM-FairytaleQA-test-1006',
83
- 'target': "why did the girl's father think the girl burned herself ?",
84
- 'references': ["why did the girl's father think the girl burned herself ?"],
85
- 'local_or_sum': 'local',
86
- 'attribute': 'causal relationship',
87
- 'ex_or_im': 'implicit'}
88
- ```
89
-
90
- ### Data Fields
91
-
92
- - `story_name`: a string of the story name to which the story section content belongs. Full story data can be found [here](https://github.com/uci-soe/FairytaleQAData).
93
-
94
- - `content`: a string of the story section(s) content related to the experts' labeled QA-pair. Used as the input for both Question Generation and Question Answering tasks.
95
-
96
- - `question`: a string of the question content. Used as the input for Question Answering task and as the output for Question Generation task.
97
-
98
- - `answer`: a string of the answer content for all splits. Used as the input for Question Generation task and as the output for Question Answering task.
99
-
100
- - `gem_id`: a string of id follows GEM naming convention ```GEM-${DATASET_NAME}-${SPLIT-NAME}-${id}``` where id is an incrementing number starting at 1
101
-
102
- - `target`: a string of the question content being used for training
103
-
104
- - `references`: a list of string containing the question content being used for automatic eval
105
-
106
- - `local_or_sum`: a string of either local or summary, indicating whether the QA is related to one story section or multiple sections
107
-
108
- - `attribute`: a string of one of character, causal relationship, action, setting, feeling, prediction, or outcome resolution. Classification of the QA by education experts annotators via 7 narrative elements on an established framework
109
-
110
- - `ex_or_im`: a string of either explicit or implicit, indicating whether the answers can be directly found in the story content or cannot be directly from the story content.
111
-
112
-
113
- ### Data Splits
114
-
115
- The data is split into a training, validation, and test split randomly but we control the ratio of QA-pair numbers in train:valid:test splits close to 8:1:1. The final split sizes are as follows:
116
-
117
- | | Train | Validation | Test |
118
- | ----- | ----- | ----- | ----- |
119
- | # Books | 232 | 23 | 23 |
120
- | # QA-Pairs | 8548 | 1025 |1007 |
121
-
122
- ## Dataset Creation
123
-
124
- ### Curation Rationale
125
-
126
- FairytaleQA was built to focus on comprehension of narratives in the education domain, targeting students from kindergarten to eighth grade. We focus on narrative comprehension for 1. it is a high-level comprehension skill strongly predictive of reading achievement and plays a central role in daily life as people frequently encounter narratives in different forms, 2. narrative stories have a clear structure of specific elements and relations among these elements, and there are existing validated narrative comprehension frameworks around this structure, which provides a basis for developing the annotation schema for our dataset.
127
-
128
- <!--We employed education experts to generate and classify 10,580 QA-pairs based on a collection of 278 fairytale stories for young readers. -->
129
-
130
- ### Source Data
131
-
132
- #### Initial Data Collection and Normalization
133
-
134
- The narrative texts utilized in the dataset are classic fairytales with clear narrative structures. We gathered the text from the [Project Gutenberg](https://www.gutenberg.org/) website, using “fairytale” as the search term. Due to a large number of fairytales found, we used the most popular stories based on the number of downloads since these stories are presumably of higher quality.
135
-
136
- To ensure the readability of the text, we made a small number of minor revisions to some obviously outdated vocabulary (e.g., changing “ere” to before) and the unconventional use of punctuation (e.g., changing consecutive semi-colons to periods). For each story, we evaluated the reading difficulty level using the [textstat](https://pypi.org/project/textstat/) Python package, primarily based on sentence length, word length, and commonness of words. We excluded stories that are at 10th grade level or above.
137
-
138
- These texts were broken down into small sections based on their semantic content by our annotators. The annotators were instructed to split the story into sections of 100-300 words that also contain meaningful content and are separated at natural story breaks. An initial annotator would split the story, and this would be reviewed by a cross-checking annotator. Most of the resulting sections were one natural paragraph of the original text.
139
-
140
- #### Who are the source language producers?
141
-
142
- The fairytale story texts are from the [Project Gutenberg](https://www.gutenberg.org/) website
143
-
144
- ### Annotations
145
-
146
- #### Annotation process
147
-
148
- The annotators were instructed to imagine that they were creating questions to test elementary or middle school students in the process of reading a complete story. We required the annotators to generate only natural, open-ended questions, avoiding “yes-” or “no-” questions. We also instructed them to provide a diverse set of questions about 7 different narrative elements, and with both implicit and explicit questions.
149
-
150
- We asked the annotators to also generate answers for each of their questions. We asked them to provide the shortest possible answers but did not restrict them to complete sentences or short phrases. We also asked the annotators to label which section(s) the question and answer was from.
151
-
152
- All annotators received a two-week training in which each of them was familiarized with the coding template and conducted practice coding on the same five stories. The practice QA pairs were then reviewed by the other annotators and the three experts, and discrepancies among annotators were discussed. During the annotation process, the team met once every week to review and discuss each member’s work. All QA pairs were cross-checked by two annotators, and 10% of the QA pairs were additionally checked by the expert supervisor. For the 46 stories used as the evaluation set, we annotate a second reference answer by asking an annotator to independently read the story and answer the questions generated by others.
153
-
154
-
155
- #### Who are the annotators?
156
-
157
- Five annotators were involved in the annotation of QA pairs. All of these annotators have a B.A. degree in education, psychology, or cognitive science and have substantial experience in teaching and reading assessment. These annotators were supervised by three experts in literacy education.
158
-
159
- ### Personal and Sensitive Information
160
-
161
- [N/A]
162
-
163
- ## Considerations for Using the Data
164
-
165
- ### Social Impact of Dataset
166
-
167
- The purpose of this dataset is to help develop systems to facilitate assessment and training of narrative comprehension skills for children in education domain.
168
-
169
- The dataset distinguishes fine-grained reading skills, such as the understanding of varying narrative elements, and contains high-quality QA-pairs generated by education experts with sufficient training and education domain knowledge to create valid QA-pairs in a consistent way.
170
-
171
- This specific GEM version of our FairytaleQA dataset is for the Question Generation task because this dataset is suitable for developing models to automatically generate questions that satisfy the need for a continuous supply of new questions, which can potentially enable large-scale development of AI-supported interactive platforms for the learning and assessment of reading comprehension skills.
172
-
173
- ### Discussion of Biases
174
-
175
- This dataset could also be served to identify social stereotypes represented in story narratives. It will be valuable to analyze how social stereotypes are represented in the children’s literature collected in our dataset, thus enabling the development of automatic systems that detect and mitigate social biases. This type of bias analysis has been an underexplored research topic for the ML community, yet it will have profound societal impacts.
176
-
177
-
178
- ### Other Known Limitations
179
-
180
- [N/A]
181
-
182
- ## Additional Information
183
-
184
- ### Dataset Curators
185
-
186
- The dataset was created by Ying Xu, Dakuo Wang, Mo Yu, Daniel Ritchie, Bingsheng Yao, Tongshuang Wu, Zheng Zhang, Toby Jia-Jun Li, Nora Bradford, Branda Sun, Tran Bao Hoang, Yisi Sang, Yufang Hou, Xiaojuan Ma, Diyi Yang, Nanyun Peng, Zhou Yu, and Mark Warschauer.
187
-
188
- Schmidt Futures provided funding for the development of the FairytaleQA dataset.
189
-
190
- ### Licensing Information
191
-
192
- [N/A]
193
-
194
- ### Citation Information
195
-
196
- ```
197
- @inproceedings{xu2022fairytaleqa,
198
- author={Xu, Ying and Wang, Dakuo and Yu, Mo and Ritchie, Daniel and Yao, Bingsheng and Wu, Tongshuang and Zhang, Zheng and Li, Toby Jia-Jun and Bradford, Nora and Sun, Branda and Hoang, Tran Bao and Sang, Yisi and Hou, Yufang and Ma, Xiaojuan and Yang, Diyi and Peng, Nanyun and Yu, Zhou and Warschauer, Mark},
199
- title = {Fantastic Questions and Where to Find Them: Fairytale{QA} -- An Authentic Dataset for Narrative Comprehension},
200
- publisher = {Association for Computational Linguistics},
201
- year = {2022}
202
- }
 
 
203
  ```
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - found
6
+ languages:
7
+ - en
8
+ licenses:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: FairytaleQA
13
+ size_categories:
14
+ - 10K<n<100K
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - question-generation
19
+ task_ids:
20
+ - abstractive-qg
21
+ ---
22
+
23
+ # Dataset Card for FairytaleQA
24
+
25
+ ## Table of Contents
26
+ - [Dataset Description](#dataset-description)
27
+ - [Dataset Summary](#dataset-summary)
28
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
29
+ - [Languages](#languages)
30
+ - [Dataset Structure](#dataset-structure)
31
+ - [Data Instances](#data-instances)
32
+ - [Data Fields](#data-instances)
33
+ - [Data Splits](#data-instances)
34
+ - [Dataset Creation](#dataset-creation)
35
+ - [Curation Rationale](#curation-rationale)
36
+ - [Source Data](#source-data)
37
+ - [Annotations](#annotations)
38
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
39
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
40
+ - [Social Impact of Dataset](#social-impact-of-dataset)
41
+ - [Discussion of Biases](#discussion-of-biases)
42
+ - [Other Known Limitations](#other-known-limitations)
43
+ - [Additional Information](#additional-information)
44
+ - [Dataset Curators](#dataset-curators)
45
+ - [Licensing Information](#licensing-information)
46
+ - [Citation Information](#citation-information)
47
+
48
+ ## Dataset Description
49
+
50
+ - **Homepage:** [Needs More Information]
51
+ - **Repository:** https://github.com/uci-soe/FairytaleQAData
52
+ - **Paper:** https://arxiv.org/abs/2203.13947
53
+ - **Leaderboard:** https://paperswithcode.com/dataset/fairytaleqa
54
+ - **Point of Contact:** [Ying Xu](mailto:ying.xu@uci.edu)
55
+
56
+ ### Dataset Summary
57
+
58
+ The FairytaleQA Dataset is an English-language dataset focusing on narrative comprehension of kindergarten to eighth-grade students. Generated by educational experts based on an evidence-based theoretical framework, FairytaleQA consists of 10,580 explicit and implicit questions derived from 278 children-friendly stories, covering seven types of narrative elements or relations. This GEM version FairytaleQA Dataset specifically supports the Question Generation task.
59
+
60
+ ### Supported Tasks and Leaderboards
61
+
62
+ - `question-generation`: The dataset can be used to train a model for Question Generation. The task was to generate questions corresponding to the given answers and the story context. Success on this task is typically measured by achieving a high [ROUGE](https://huggingface.co/metrics/rouge) score to the reference ground-truth questions. A [BART-based model](https://huggingface.co/facebook/bart-large) currently achieves a [ROUGE-L of 0.527/0.527](https://github.com/uci-soe/FairytaleQAData) on valid/test splits. This task has an active leaderboard which can be found at <https://paperswithcode.com/sota/question-generation-on-fairytaleqa> and ranks models based on [ROUGE](https://huggingface.co/metrics/rouge) score.
63
+
64
+
65
+ ### Languages
66
+
67
+ The text in the dataset is in English. The associated BCP-47 code is `en`.
68
+
69
+ ## Dataset Structure
70
+
71
+ ### Data Instances
72
+
73
+ A typical data point comprises a question, the corresponding story content, and one answer for train split or two answers for valid/test splits. Education expert annotators labeled whether the answer is locally relevant to one story section or requires summarization capabilities from multiple story sections and whether the answers are explicit (can be directly found in the stories) or implicit (cannot be directly found in the story text). Additionally, education expert annotators categorize the QA-pairs via 7 narrative elements from an established framework.
74
+
75
+ For the original question file of each story, human annotator may provide more than one answer. However, to maintain evaluation fairness across all QAs, we only load the first answer here for the QG task.
76
+
77
+ An example from the FairytaleQA test split looks as follows:
78
+
79
+ ```
80
+ {'story_name': 'self-did-it',
81
+ 'content': '" what is your name ? " asked the girl from underground . " self is my name , " said the woman . that seemed a curious name to the girl , and she once more began to pull the fire apart . then the woman grew angry and began to scold , and built it all up again . thus they went on for a good while ; but at last , while they were in the midst of their pulling apart and building up of the fire , the woman upset the tar - barrel on the girl from underground . then the latter screamed and ran away , crying : " father , father ! self burned me ! " " nonsense , if self did it , then self must suffer for it ! " came the answer from below the hill .',
82
+ 'answer': 'the woman told the girl her name was self .',
83
+ 'question': "why did the girl's father think the girl burned herself ?",
84
+ 'gem_id': 'GEM-FairytaleQA-test-1006',
85
+ 'target': "why did the girl's father think the girl burned herself ?",
86
+ 'references': ["why did the girl's father think the girl burned herself ?"],
87
+ 'local_or_sum': 'local',
88
+ 'attribute': 'causal relationship',
89
+ 'ex_or_im': 'implicit'}
90
+ ```
91
+
92
+ ### Data Fields
93
+
94
+ - `story_name`: a string of the story name to which the story section content belongs. Full story data can be found [here](https://github.com/uci-soe/FairytaleQAData).
95
+
96
+ - `content`: a string of the story section(s) content related to the experts' labeled QA-pair. Used as the input for both Question Generation and Question Answering tasks.
97
+
98
+ - `question`: a string of the question content. Used as the input for Question Answering task and as the output for Question Generation task.
99
+
100
+ - `answer`: a string of the answer content for all splits. Used as the input for Question Generation task and as the output for Question Answering task.
101
+
102
+ - `gem_id`: a string of id follows GEM naming convention ```GEM-${DATASET_NAME}-${SPLIT-NAME}-${id}``` where id is an incrementing number starting at 1
103
+
104
+ - `target`: a string of the question content being used for training
105
+
106
+ - `references`: a list of string containing the question content being used for automatic eval
107
+
108
+ - `local_or_sum`: a string of either local or summary, indicating whether the QA is related to one story section or multiple sections
109
+
110
+ - `attribute`: a string of one of character, causal relationship, action, setting, feeling, prediction, or outcome resolution. Classification of the QA by education experts annotators via 7 narrative elements on an established framework
111
+
112
+ - `ex_or_im`: a string of either explicit or implicit, indicating whether the answers can be directly found in the story content or cannot be directly from the story content.
113
+
114
+
115
+ ### Data Splits
116
+
117
+ The data is split into a training, validation, and test split randomly but we control the ratio of QA-pair numbers in train:valid:test splits close to 8:1:1. The final split sizes are as follows:
118
+
119
+ | | Train | Validation | Test |
120
+ | ----- | ----- | ----- | ----- |
121
+ | # Books | 232 | 23 | 23 |
122
+ | # QA-Pairs | 8548 | 1025 |1007 |
123
+
124
+ ## Dataset Creation
125
+
126
+ ### Curation Rationale
127
+
128
+ FairytaleQA was built to focus on comprehension of narratives in the education domain, targeting students from kindergarten to eighth grade. We focus on narrative comprehension for 1. it is a high-level comprehension skill strongly predictive of reading achievement and plays a central role in daily life as people frequently encounter narratives in different forms, 2. narrative stories have a clear structure of specific elements and relations among these elements, and there are existing validated narrative comprehension frameworks around this structure, which provides a basis for developing the annotation schema for our dataset.
129
+
130
+ <!--We employed education experts to generate and classify 10,580 QA-pairs based on a collection of 278 fairytale stories for young readers. -->
131
+
132
+ ### Source Data
133
+
134
+ #### Initial Data Collection and Normalization
135
+
136
+ The narrative texts utilized in the dataset are classic fairytales with clear narrative structures. We gathered the text from the [Project Gutenberg](https://www.gutenberg.org/) website, usingfairytaleas the search term. Due to a large number of fairytales found, we used the most popular stories based on the number of downloads since these stories are presumably of higher quality.
137
+
138
+ To ensure the readability of the text, we made a small number of minor revisions to some obviously outdated vocabulary (e.g., changing “ere” to “before”) and the unconventional use of punctuation (e.g., changing consecutive semi-colons to periods). For each story, we evaluated the reading difficulty level using the [textstat](https://pypi.org/project/textstat/) Python package, primarily based on sentence length, word length, and commonness of words. We excluded stories that are at 10th grade level or above.
139
+
140
+ These texts were broken down into small sections based on their semantic content by our annotators. The annotators were instructed to split the story into sections of 100-300 words that also contain meaningful content and are separated at natural story breaks. An initial annotator would split the story, and this would be reviewed by a cross-checking annotator. Most of the resulting sections were one natural paragraph of the original text.
141
+
142
+ #### Who are the source language producers?
143
+
144
+ The fairytale story texts are from the [Project Gutenberg](https://www.gutenberg.org/) website
145
+
146
+ ### Annotations
147
+
148
+ #### Annotation process
149
+
150
+ The annotators were instructed to imagine that they were creating questions to test elementary or middle school students in the process of reading a complete story. We required the annotators to generate only natural, open-ended questions, avoiding “yes-” or “no-” questions. We also instructed them to provide a diverse set of questions about 7 different narrative elements, and with both implicit and explicit questions.
151
+
152
+ We asked the annotators to also generate answers for each of their questions. We asked them to provide the shortest possible answers but did not restrict them to complete sentences or short phrases. We also asked the annotators to label which section(s) the question and answer was from.
153
+
154
+ All annotators received a two-week training in which each of them was familiarized with the coding template and conducted practice coding on the same five stories. The practice QA pairs were then reviewed by the other annotators and the three experts, and discrepancies among annotators were discussed. During the annotation process, the team met once every week to review and discuss each member’s work. All QA pairs were cross-checked by two annotators, and 10% of the QA pairs were additionally checked by the expert supervisor. For the 46 stories used as the evaluation set, we annotate a second reference answer by asking an annotator to independently read the story and answer the questions generated by others.
155
+
156
+
157
+ #### Who are the annotators?
158
+
159
+ Five annotators were involved in the annotation of QA pairs. All of these annotators have a B.A. degree in education, psychology, or cognitive science and have substantial experience in teaching and reading assessment. These annotators were supervised by three experts in literacy education.
160
+
161
+ ### Personal and Sensitive Information
162
+
163
+ [N/A]
164
+
165
+ ## Considerations for Using the Data
166
+
167
+ ### Social Impact of Dataset
168
+
169
+ The purpose of this dataset is to help develop systems to facilitate assessment and training of narrative comprehension skills for children in education domain.
170
+
171
+ The dataset distinguishes fine-grained reading skills, such as the understanding of varying narrative elements, and contains high-quality QA-pairs generated by education experts with sufficient training and education domain knowledge to create valid QA-pairs in a consistent way.
172
+
173
+ This specific GEM version of our FairytaleQA dataset is for the Question Generation task because this dataset is suitable for developing models to automatically generate questions that satisfy the need for a continuous supply of new questions, which can potentially enable large-scale development of AI-supported interactive platforms for the learning and assessment of reading comprehension skills.
174
+
175
+ ### Discussion of Biases
176
+
177
+ This dataset could also be served to identify social stereotypes represented in story narratives. It will be valuable to analyze how social stereotypes are represented in the children’s literature collected in our dataset, thus enabling the development of automatic systems that detect and mitigate social biases. This type of bias analysis has been an underexplored research topic for the ML community, yet it will have profound societal impacts.
178
+
179
+
180
+ ### Other Known Limitations
181
+
182
+ [N/A]
183
+
184
+ ## Additional Information
185
+
186
+ ### Dataset Curators
187
+
188
+ The dataset was created by Ying Xu, Dakuo Wang, Mo Yu, Daniel Ritchie, Bingsheng Yao, Tongshuang Wu, Zheng Zhang, Toby Jia-Jun Li, Nora Bradford, Branda Sun, Tran Bao Hoang, Yisi Sang, Yufang Hou, Xiaojuan Ma, Diyi Yang, Nanyun Peng, Zhou Yu, and Mark Warschauer.
189
+
190
+ Schmidt Futures provided funding for the development of the FairytaleQA dataset.
191
+
192
+ ### Licensing Information
193
+
194
+ [N/A]
195
+
196
+ ### Citation Information
197
+
198
+ ```
199
+ @inproceedings{xu2022fairytaleqa,
200
+ author={Xu, Ying and Wang, Dakuo and Yu, Mo and Ritchie, Daniel and Yao, Bingsheng and Wu, Tongshuang and Zhang, Zheng and Li, Toby Jia-Jun and Bradford, Nora and Sun, Branda and Hoang, Tran Bao and Sang, Yisi and Hou, Yufang and Ma, Xiaojuan and Yang, Diyi and Peng, Nanyun and Yu, Zhou and Warschauer, Mark},
201
+ title = {Fantastic Questions and Where to Find Them: Fairytale{QA} -- An Authentic Dataset for Narrative Comprehension},
202
+ publisher = {Association for Computational Linguistics},
203
+ year = {2022}
204
+ }
205
  ```