bourdoiscatie commited on
Commit
94cde0c
1 Parent(s): 5602962

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -16
README.md CHANGED
@@ -15,19 +15,6 @@ In total, there are 221,348 training data, **910** validation data and 6,376 tes
15
  In practice, due to the restrictive license for the FQUAD 1.0 dataset, we can only share **179,886** rows of the 221,348 training data and not the test dataset.
16
 
17
 
18
- ## Datasets details
19
-
20
- | Dataset | Format | Train split | Dev split | Test split | Available in frenchQA |
21
- | ----------- | ----------- | ----------- | ----------- | ----------- | ------------------------ |
22
- | [piaf](https://www.data.gouv.fr/en/datasets/piaf-le-dataset-francophone-de-questions-reponses/)| SQuAD 1.0 | 9 224 Q & A | X | X | Yes |
23
- | piaf_v2| SQuAD 2.0 | 9 224 Q & A | X | X | Yes |
24
- | [fquad](https://fquad.illuin.tech/)| SQuAD 1.0 | 20 731 Q & A | 3 188 Q & A (is not used for training, but as a test dataset) | 2 189 Q & A (not freely available)| No due to the license |
25
- | fquad_v2 | SQuAD 2.0 | 20 731 Q & A | 3 188 Q & A (is not used for training, but as a test dataset) | X | No due to the license |
26
- | [lincoln/newsquadfr](https://huggingface.co/datasets/lincoln/newsquadfr) | SQuAD 1.0 | 1 650 Q & A | 455 Q & A | X | Yes |
27
- | lincoln/newsquadfr_v2 | SQuAD 2.0 | 1 650 Q & A | 455 Q & A | X | Yes |
28
- | [pragnakalp/squad_v2_french_translated](https://huggingface.co/datasets/pragnakalp/squad_v2_french_translated)| SQuAD 2.0 | 79 069 Q & A | X | X | Yes |
29
- | pragnakalp/squad_v2_french_translated_v2| SQuAD 2.0 | 79 069 Q & A | X | X | Yes |
30
-
31
  # Usage
32
  ```
33
  from datasets import load_dataset
@@ -47,8 +34,23 @@ DatasetDict({
47
  })
48
  ```
49
 
50
- ## Columns
51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  ```
53
  dataset_train = dataset['train'].to_pandas()
54
  dataset_train.head()
@@ -68,11 +70,11 @@ dataset_train.head()
68
  - the `dataset` column identifies the row's original dataset (if you wish to apply filters to it, rows in SQuAD v2 format are indicated with the suffix `_v2` in the dataset name)
69
 
70
  ## Split
71
- - train` corresponds to the concatenation of the training dataset from `pragnakalp/squad_v2_english_translated` + `lincoln/newsquadfr` + `PIAFv1.2` + the augmented version of each dataset in SQuADv2 format (no shuffle has been performed)
72
  - `validation` corresponds to the concatenation of the newsquadfr validation dataset + this same dataset expanded in SQuAD v2 format (= newsquadfr_v2) (no shuffle performed)
73
 
74
 
75
- # Statistics
76
 
77
  The question type distribution is as follows:
78
 
 
15
  In practice, due to the restrictive license for the FQUAD 1.0 dataset, we can only share **179,886** rows of the 221,348 training data and not the test dataset.
16
 
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  # Usage
19
  ```
20
  from datasets import load_dataset
 
34
  })
35
  ```
36
 
 
37
 
38
+ # Dataset
39
+ ## Dataset details
40
+
41
+ | Dataset | Format | Train split | Dev split | Test split | Available in frenchQA |
42
+ | ----------- | ----------- | ----------- | ----------- | ----------- | ------------------------ |
43
+ | [piaf](https://www.data.gouv.fr/en/datasets/piaf-le-dataset-francophone-de-questions-reponses/)| SQuAD 1.0 | 9 224 Q & A | X | X | Yes |
44
+ | piaf_v2| SQuAD 2.0 | 9 224 Q & A | X | X | Yes |
45
+ | [fquad](https://fquad.illuin.tech/)| SQuAD 1.0 | 20 731 Q & A | 3 188 Q & A (is not used for training, but as a test dataset) | 2 189 Q & A (not freely available)| No due to the license |
46
+ | fquad_v2 | SQuAD 2.0 | 20 731 Q & A | 3 188 Q & A (is not used for training, but as a test dataset) | X | No due to the license |
47
+ | [lincoln/newsquadfr](https://huggingface.co/datasets/lincoln/newsquadfr) | SQuAD 1.0 | 1 650 Q & A | 455 Q & A | X | Yes |
48
+ | lincoln/newsquadfr_v2 | SQuAD 2.0 | 1 650 Q & A | 455 Q & A | X | Yes |
49
+ | [pragnakalp/squad_v2_french_translated](https://huggingface.co/datasets/pragnakalp/squad_v2_french_translated)| SQuAD 2.0 | 79 069 Q & A | X | X | Yes |
50
+ | pragnakalp/squad_v2_french_translated_v2| SQuAD 2.0 | 79 069 Q & A | X | X | Yes |
51
+
52
+
53
+ ## Columns
54
  ```
55
  dataset_train = dataset['train'].to_pandas()
56
  dataset_train.head()
 
70
  - the `dataset` column identifies the row's original dataset (if you wish to apply filters to it, rows in SQuAD v2 format are indicated with the suffix `_v2` in the dataset name)
71
 
72
  ## Split
73
+ - `train` corresponds to the concatenation of the training dataset from `pragnakalp/squad_v2_english_translated` + `lincoln/newsquadfr` + `PIAFv1.2` + the augmented version of each dataset in SQuADv2 format (no shuffle has been performed)
74
  - `validation` corresponds to the concatenation of the newsquadfr validation dataset + this same dataset expanded in SQuAD v2 format (= newsquadfr_v2) (no shuffle performed)
75
 
76
 
77
+ # Question type statistics
78
 
79
  The question type distribution is as follows:
80