Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -42,13 +42,7 @@ task_ids:
|
|
42 |
# MFAQ
|
43 |
MFAQ is a multilingual corpus of *Frequently Asked Questions* parsed from the [Common Crawl](https://commoncrawl.org/).
|
44 |
```
|
45 |
-
load_dataset("clips/mfaq")
|
46 |
-
```
|
47 |
-
|
48 |
-
## Languages
|
49 |
-
We collected around 6M pairs of questions and answers in 21 different languages. To download a language specific subset you need to specify the language key as configuration. See below for an example.
|
50 |
-
```
|
51 |
-
d = load_dataset("clips/mfaq", "en")
|
52 |
print(d["validation"][-1])
|
53 |
{
|
54 |
"qa_pairs": [
|
@@ -61,6 +55,12 @@ print(d["validation"][-1])
|
|
61 |
}
|
62 |
```
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
| Language | Key | Pairs | Pages |
|
65 |
|------------|-----|-----------|-----------|
|
66 |
| All | all | 6,346,693 | 1,035,649 |
|
|
|
42 |
# MFAQ
|
43 |
MFAQ is a multilingual corpus of *Frequently Asked Questions* parsed from the [Common Crawl](https://commoncrawl.org/).
|
44 |
```
|
45 |
+
load_dataset("clips/mfaq", "en")
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
print(d["validation"][-1])
|
47 |
{
|
48 |
"qa_pairs": [
|
|
|
55 |
}
|
56 |
```
|
57 |
|
58 |
+
## Languages
|
59 |
+
We collected around 6M pairs of questions and answers in 21 different languages. To download a language specific subset you need to specify the language key as configuration. See below for an example.
|
60 |
+
```
|
61 |
+
d = load_dataset("clips/mfaq", "en") # replace "en" by any language listed below
|
62 |
+
```
|
63 |
+
|
64 |
| Language | Key | Pairs | Pages |
|
65 |
|------------|-----|-----------|-----------|
|
66 |
| All | all | 6,346,693 | 1,035,649 |
|