Update README.md
Browse files
README.md
CHANGED
@@ -64,11 +64,11 @@ dataset = load_dataset("CATIE-AQ/frenchQA")
|
|
64 |
dataset
|
65 |
DatasetDict({
|
66 |
train: Dataset({
|
67 |
-
features: ['
|
68 |
num_rows: 200617
|
69 |
})
|
70 |
validation: Dataset({
|
71 |
-
features: ['
|
72 |
num_rows: 910
|
73 |
})
|
74 |
test: Dataset({
|
@@ -94,25 +94,6 @@ DatasetDict({
|
|
94 |
| pragnakalp/squad_v2_french_translated_v2| SQuAD 2.0 | 79 069 Q & A | X | X | Yes |
|
95 |
|
96 |
|
97 |
-
## Columns
|
98 |
-
```
|
99 |
-
dataset_train = dataset['train'].to_pandas()
|
100 |
-
dataset_train.head()
|
101 |
-
|
102 |
-
context question answer answer_start dataset
|
103 |
-
0 Beyoncé Giselle Knowles-Carter (/ biːˈjɒnseɪ /... Quand Beyonce a-t-elle commencé à devenir popu... à la fin des années 1990 269 pragnakalp/squad_v2_french_translated
|
104 |
-
1 Beyoncé Giselle Knowles-Carter (/ biːˈjɒnseɪ /... Quand Beyonce a-t-elle quitté Destiny's Child ... 2003 549 pragnakalp/squad_v2_french_translated
|
105 |
-
2 Beyoncé Giselle Knowles-Carter (/ biːˈjɒnseɪ /... Qui a dirigé le groupe Destiny's Child ? Mathew Knowles 376 pragnakalp/squad_v2_french_translated
|
106 |
-
3 Beyoncé Giselle Knowles-Carter (/ biːˈjɒnseɪ /... Quand Beyoncé a-t-elle sorti Dangerously in Lo... 2003 549 pragnakalp/squad_v2_french_translated
|
107 |
-
4 Beyoncé Giselle Knowles-Carter (/ biːˈjɒnseɪ /... Combien de Grammy Awards Beyoncé a-t-elle gagn... cinq 629 pragnakalp/squad_v2_french_translated
|
108 |
-
```
|
109 |
-
|
110 |
-
- the `context` column contains the context
|
111 |
-
- the `question` column contains the question
|
112 |
-
- the `answer` column contains the answer (has been replaced by `no_answer` for rows in SQuAD v2 format)
|
113 |
-
- the `answer_start` column contains the start position of the answer in the context (has been replaced by `-1` for rows in SQuAD v2 format)
|
114 |
-
- 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)
|
115 |
-
|
116 |
## Split
|
117 |
- `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)
|
118 |
- `validation` corresponds to the concatenation of the newsquadfr validation dataset + this same dataset expanded in SQuAD v2 format (= newsquadfr_v2) (no shuffle performed)
|
|
|
64 |
dataset
|
65 |
DatasetDict({
|
66 |
train: Dataset({
|
67 |
+
features: ['id', 'title', 'context', 'question', 'answers'],
|
68 |
num_rows: 200617
|
69 |
})
|
70 |
validation: Dataset({
|
71 |
+
features: ['id', 'title', 'context', 'question', 'answers'],
|
72 |
num_rows: 910
|
73 |
})
|
74 |
test: Dataset({
|
|
|
94 |
| pragnakalp/squad_v2_french_translated_v2| SQuAD 2.0 | 79 069 Q & A | X | X | Yes |
|
95 |
|
96 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
## Split
|
98 |
- `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)
|
99 |
- `validation` corresponds to the concatenation of the newsquadfr validation dataset + this same dataset expanded in SQuAD v2 format (= newsquadfr_v2) (no shuffle performed)
|