serhany commited on
Commit
c8becbd
1 Parent(s): 2193593

update readme

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md CHANGED
@@ -19,3 +19,21 @@ configs:
19
  - split: train
20
  path: data/train-*
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  - split: train
20
  path: data/train-*
21
  ---
22
+ 'scaling-qa' is a dataset made of merging a wide corpus on existing Question Answering datasets.
23
+
24
+ The dataset has been created with the sole purpose of augmenting Text-to-Text transformer-based generation models like T5, and has shown a great performance increase so far.
25
+
26
+ The dataset is in SQuAD format, and includes 3 fields: 'context', 'question' and 'answer'. In the dataset, there are many questions and answers over the same context, which adds up to the models' abilities to generate diverse questions or answers.
27
+
28
+ The dataset can be used for Question Answering (QA) or Question Generation (QG) tasks.
29
+
30
+ A pipeline for generating diverse questions is currently under preparation.
31
+
32
+ This dataset is a collection of: SQuAD, NewsQA, DROP, Duo_RC and COQA datasets. The conversational question-answer pairs in the COQA dataset have been made into separate entries, with multiple question and answer pairs corresponding to the same context. This structure helps the models understand this conversational behaviour when needed, but prevents them from overfitting into a strictly conversational model.
33
+
34
+
35
+ All licences originally belong to the owners of mentioned datasets, this is an effort to create a large corpus for scaled models.
36
+
37
+ June 26, 2024 - Wednesday
38
+
39
+ Serhan YILMAZ