Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -19,17 +19,20 @@ size_categories:
|
|
19 |
## Dataset Description
|
20 |
|
21 |
- **Homepage:**
|
22 |
-
- **Repository:**
|
23 |
-
https://
|
24 |
-
- **
|
25 |
-
|
26 |
-
- **Leaderboard:**
|
27 |
-
- **Point of Contact:**
|
28 |
-
Bernardo Leite (benjleite.com)
|
29 |
|
30 |
### Dataset Summary
|
31 |
|
32 |
-
This repository contains the European Portuguese (pt-PT) machine-translated version of the original English FairytaleQA dataset (https://huggingface.co/datasets/WorkInTheDark/FairytaleQA). FairytaleQA is an open-source dataset designed to enhance comprehension of narratives, aimed at students from kindergarten to eighth grade. The dataset is meticulously annotated by education experts following an evidence-based theoretical framework. It comprises 10,580 explicit and implicit questions derived from 278 child-friendly stories, covering seven types of narrative elements or relations.
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
### Supported Tasks and Leaderboards
|
35 |
|
@@ -39,22 +42,40 @@ Question-Answering, Question-Generation, Question-Answer Pair Generation
|
|
39 |
|
40 |
European Portuguese (pt-PT)
|
41 |
|
42 |
-
###
|
43 |
|
44 |
An example of "train" looks as follows:
|
45 |
|
46 |
```
|
47 |
{
|
48 |
-
'story_name': '
|
49 |
-
'story_section': '
|
50 |
-
|
51 |
-
|
52 |
-
'question': 'Porque é que a mãe deu ao mais velho um belo bolo e uma garrafa de vinho?',
|
53 |
-
'answer': 'Para que não sofresse de fome ou sede.',
|
54 |
'local-or-sum': 'local',
|
55 |
-
'attribute': '
|
56 |
'ex-or-im': 'explicit',
|
57 |
-
'ex-or-im2': '
|
58 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
-
|
|
|
19 |
## Dataset Description
|
20 |
|
21 |
- **Homepage:**
|
22 |
+
- **Repository:** https://github.com/bernardoleite/fairytaleqa-translated
|
23 |
+
- **Paper:** https://arxiv.org/abs/2406.04233v1
|
24 |
+
- **Leaderboard:** https://paperswithcode.com/sota/question-generation-on-fairytaleqa
|
25 |
+
- **Point of Contact:** Bernardo Leite (benjleite.com)
|
|
|
|
|
|
|
26 |
|
27 |
### Dataset Summary
|
28 |
|
29 |
+
This repository contains the **European Portuguese (pt-PT)** machine-translated version of the original English FairytaleQA dataset (https://huggingface.co/datasets/WorkInTheDark/FairytaleQA). FairytaleQA is an open-source dataset designed to enhance comprehension of narratives, aimed at students from kindergarten to eighth grade. The dataset is meticulously annotated by education experts following an evidence-based theoretical framework. It comprises 10,580 explicit and implicit questions derived from 278 child-friendly stories, covering seven types of narrative elements or relations.
|
30 |
+
|
31 |
+
You can load the dataset via:
|
32 |
+
```
|
33 |
+
import datasets
|
34 |
+
data = datasets.load_dataset('benjleite/FairytaleQA-translated-ptPT')
|
35 |
+
```
|
36 |
|
37 |
### Supported Tasks and Leaderboards
|
38 |
|
|
|
42 |
|
43 |
European Portuguese (pt-PT)
|
44 |
|
45 |
+
### Example
|
46 |
|
47 |
An example of "train" looks as follows:
|
48 |
|
49 |
```
|
50 |
{
|
51 |
+
'story_name': 'the-toad-woman-story',
|
52 |
+
'story_section': 'Uma vez aconteceu uma grande sorte a uma jovem que vivia sozinha no bosque...'
|
53 |
+
'question': 'Quem é que a mulher viu a deslizar para a floresta?',
|
54 |
+
'answer': 'Um jovem bonito.',
|
|
|
|
|
55 |
'local-or-sum': 'local',
|
56 |
+
'attribute': 'character',
|
57 |
'ex-or-im': 'explicit',
|
58 |
+
'ex-or-im2': '',
|
59 |
}
|
60 |
+
```
|
61 |
+
|
62 |
+
### Dataset Structure
|
63 |
+
|
64 |
+
- `story_name`*: a string of the story name to which the story section content belongs.
|
65 |
+
|
66 |
+
- `story_section`: 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.
|
67 |
+
|
68 |
+
- `question`: a string of the question content. Used as the input for Question Answering task and as the output for Question Generation task.
|
69 |
+
|
70 |
+
- `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.
|
71 |
+
|
72 |
+
- `local_or_sum`*: a string of either local or summary, indicating whether the QA is related to one story section or multiple sections.
|
73 |
+
|
74 |
+
- `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.
|
75 |
+
|
76 |
+
- `ex_or_im1`*: 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.
|
77 |
+
|
78 |
+
- `ex_or_im2`*: similar to 'ex-or-im1', but annotated by another annotator (only available for test/val splits).
|
79 |
+
|
80 |
|
81 |
+
(*) Field has not been translated. Use it at your own convenince.
|