WorkInTheDark commited on
Commit
74d3c30
1 Parent(s): 367a42d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +150 -0
README.md ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - question-answering
5
+ - text-generation
6
+ language:
7
+ - en
8
+ tags:
9
+ - education
10
+ - children education
11
+ ---
12
+
13
+ # Dataset Card for Dataset Name
14
+
15
+ ## Dataset Description
16
+
17
+ - **Homepage:**
18
+ - **Repository:**
19
+ - https://github.com/uci-soe/FairytaleQAData
20
+ - https://github.com/WorkInTheDark/FairytaleQA_Dataset
21
+ - **Paper:**
22
+ - **Leaderboard:**
23
+ - **Point of Contact:**
24
+
25
+ ### Dataset Summary
26
+
27
+ This is the repository for the FairytaleQA dataset, an open-source dataset focusing on comprehension of narratives, targeting students from kindergarten to eighth grade. The FairytaleQA dataset is annotated by education experts based on an evidence-based theoretical framework. It consists of 10,580 explicit and implicit questions derived from 278 children-friendly stories, covering seven types of narrative elements or relations.
28
+
29
+ ### Supported Tasks and Leaderboards
30
+
31
+ Question-Answering, Question-Generation, Question-Answer Pair Generation
32
+
33
+ ### Languages
34
+
35
+ English
36
+
37
+ ## Dataset Structure
38
+
39
+
40
+ ### Data Instances
41
+
42
+ An example of "train" looks as follows:
43
+
44
+ ```
45
+
46
+ {
47
+ 'story_name': 'three-dogs',
48
+ 'story_section': 'once upon a time there was a king who went forth into the world and
49
+ ... ...
50
+ guards to watch over the little princess so that she would not get out under the open sky .',
51
+ 'question': 'why was there great rejoicing in the city and throughout the country ?',
52
+ 'answer1': 'the people wished their king all that was good .',
53
+ 'answer2': '',
54
+ 'local-or-sum': 'local',
55
+ 'attribute': 'causal relationship',
56
+ 'ex-or-im': 'explicit',
57
+ 'ex-or-im2': '',
58
+ }
59
+
60
+ ```
61
+
62
+ ### Data Fields
63
+
64
+ - **'story_name'**: story name
65
+ - **'story_section'**: story section related to the QA-pair
66
+ - **'question'**: the question content
67
+ - **'answer1'**: the 1st answer (available in all splits)
68
+ - **'answer2'**: the 2nd answer by another annotator (only available in test / val splits)
69
+ - **'local-or-sum'**: 'local' denotes the question is related to only one story section, while 'summary' denotes the question is related to multiple story sections
70
+ - **'attribute'**: categorized by education experts into seven narrative elements: character / setting / action / feeling / causal relationship / outcome resolution, detailed definition is described in the paper
71
+ - **'ex-or-im'**: 'explicit' denotes the answer can be found in the story content, while 'implicit' denotes the answer require high-level summarization
72
+ - **'ex-or-im2'**: similar to 'ex-or-im', but annotated by another annotator (only available in storys in test / val splits)
73
+
74
+
75
+
76
+ ### Data Splits
77
+
78
+ - train split: 232 books with 8548 QA-pairs
79
+ - val split: 23 books with 1025 QA-pairs
80
+ - test split: 23 books with 1007 QA-pairs
81
+
82
+ ## Dataset Creation
83
+
84
+ ### Curation Rationale
85
+
86
+ [More Information Needed]
87
+
88
+ ### Source Data
89
+
90
+ #### Initial Data Collection and Normalization
91
+
92
+ [More Information Needed]
93
+
94
+ #### Who are the source language producers?
95
+
96
+ [More Information Needed]
97
+
98
+ ### Annotations
99
+
100
+ #### Annotation process
101
+
102
+ [More Information Needed]
103
+
104
+ #### Who are the annotators?
105
+
106
+ [More Information Needed]
107
+
108
+ ### Personal and Sensitive Information
109
+
110
+ [More Information Needed]
111
+
112
+ ## Considerations for Using the Data
113
+
114
+ ### Social Impact of Dataset
115
+
116
+ [More Information Needed]
117
+
118
+ ### Discussion of Biases
119
+
120
+ [More Information Needed]
121
+
122
+ ### Other Known Limitations
123
+
124
+ [More Information Needed]
125
+
126
+ ## Additional Information
127
+
128
+ ### Dataset Curators
129
+
130
+ [More Information Needed]
131
+
132
+ ### Licensing Information
133
+
134
+ [More Information Needed]
135
+
136
+ ### Citation Information
137
+
138
+ Our Dataset Paper is accepted to ACL 2022, you may cite:
139
+ ```
140
+ @inproceedings{xu2022fairytaleqa,
141
+ 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},
142
+ title = {Fantastic Questions and Where to Find Them: Fairytale{QA} -- An Authentic Dataset for Narrative Comprehension},
143
+ publisher = {Association for Computational Linguistics},
144
+ year = {2022}
145
+ }
146
+ ```
147
+
148
+ ### Contributions
149
+
150
+ [More Information Needed]