bourdoiscatie commited on
Commit
4cd740f
1 Parent(s): 1b823a6

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - fr
4
+ license: mit
5
+ size_categories:
6
+ - 10K<n<100K
7
+ task_categories:
8
+ - text-generation
9
+ ---
10
+
11
+ # piaf_fr_prompt_question_generation_with_context
12
+ ## Summary
13
+
14
+ **piaf_fr_prompt_question_generation_with_context** is a subset of the [**Dataset of French Prompts (DFP)**]().
15
+ It contains **48,069** rows that can be used for a question-generation (with context) task.
16
+ The original data (without prompts) comes from the dataset [PIAF](https://huggingface.co/datasets/etalab-ia/piaf) and was augmented by questions in SQUAD 2.0 format in the [FrenchQA]( https://huggingface.co/datasets/CATIE-AQ/frenchQA) dataset.
17
+ A list of prompts (see below) was then applied in order to build the input and target columns and thus obtain the same format as the [xP3](https://huggingface.co/datasets/bigscience/xP3) dataset by Muennighoff et al.
18
+
19
+
20
+ ## Prompts used
21
+ ### List
22
+ 24 prompts were created for this dataset. The logic applied consists in proposing prompts in the indicative tense, in the form of tutoiement and in the form of vouvoiement.
23
+
24
+ ```
25
+ '"'+context+'"\n Générer une question à partir du texte ci-dessus : ',
26
+ '"'+context+'"\n Génère une question à partir du texte ci-dessus : ',
27
+ '"'+context+'"\n Générez une question à partir du texte ci-dessus : ',
28
+ '"'+context+'"\n Trouver une question à partir du texte ci-dessus : ',
29
+ '"'+context+'"\n Trouve une question à partir du texte ci-dessus : ',
30
+ '"'+context+'"\n Trouvez une question à partir du texte ci-dessus : ',
31
+ '"'+context+'"\n Créer une bonne question à partir du texte ci-dessus : ',
32
+ '"'+context+'"\n Crée trouver une bonne question à partir du texte ci-dessus : ',
33
+ '"'+context+'"\n Créez trouver une bonne question à partir du texte ci-dessus : ',
34
+ '"'+context+'"\n Ecrire une bonne question à partir du texte ci-dessus : ',
35
+ '"'+context+'"\n Ecris une bonne question à partir du texte ci-dessus : ',
36
+ '"'+context+'"\n Ecrivez une bonne question à partir du texte ci-dessus : ',
37
+ 'Générer une bonne question pour le texte suivant : "'+context+'"',
38
+ 'Génère une bonne question pour le texte suivant : "'+context+'"',
39
+ 'Générez une bonne question pour le texte suivant : "'+context+'"',
40
+ 'Trouver une bonne question pour le texte suivant : "'+context+'"',
41
+ 'Trouve une bonne question pour le texte suivant : "'+context+'"',
42
+ 'Trouvez trouver une bonne question pour le texte suivant : "'+context+'"',
43
+ 'Créer une bonne question pour le texte suivant : "'+context+'"',
44
+ 'Crée trouver une bonne question pour le texte suivant : "'+context+'"',
45
+ 'Créez trouver une bonne question pour le texte suivant : "'+context+'"',
46
+ 'Ecrire une bonne question pour le texte suivant : "'+context+'"',
47
+ 'Ecris une bonne question pour le texte suivant : "'+context+'"',
48
+ 'Ecrivez une bonne question pour le texte suivant : "'+context+'"'
49
+ ```
50
+
51
+
52
+ # Splits
53
+ - train with 48,069 samples
54
+ - no valid and test splits in the original data
55
+
56
+
57
+ # How to use?
58
+ ```
59
+ from datasets import load_dataset
60
+ dataset = load_dataset("CATIE-AQ/piaf_fr_prompt_question_generation_with_context")
61
+ ```
62
+
63
+
64
+ # Citation
65
+ ## Original data
66
+ > @InProceedings{keraron-EtAl:2020:LREC,
67
+ author = {Keraron, Rachel and Lancrenon, Guillaume and Bras, Mathilde and Allary, Frédéric and Moyse, Gilles and Scialom, Thomas and Soriano-Morales, Edmundo-Pavel and Staiano, Jacopo},
68
+ title = {Project PIAF: Building a Native French Question-Answering Dataset},
69
+ booktitle = {Proceedings of The 12th Language Resources and Evaluation Conference},
70
+ month = {May},
71
+ year = {2020},
72
+ address = {Marseille, France},
73
+ publisher = {European Language Resources Association},
74
+ pages = {5483--5492},
75
+ url = {https://www.aclweb.org/anthology/2020.lrec-1.673}
76
+ }
77
+
78
+
79
+
80
+
81
+ ## This Dataset
82
+
83
+
84
+
85
+ ## License
86
+ MIT