Maxime commited on
Commit
08eb2bf
2 Parent(s): 65cb92d 7e21418

Merge branch 'main' of https://huggingface.co/datasets/clips/mfaq

Browse files
Files changed (1) hide show
  1. README.md +11 -2
README.md CHANGED
@@ -42,13 +42,22 @@ 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
- load_dataset("clips/mfaq", "en")
52
  ```
53
 
54
  | Language | Key | Pairs | Pages |
 
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
+ {
47
+ "qa_pairs": [
48
+ {
49
+ "question": "Do I need a rental Car in Cork?",
50
+ "answer": "If you plan on travelling outside of Cork City, for instance to Kinsale [...]"
51
+ },
52
+ ...
53
+ ]
54
+ }
55
  ```
56
 
57
  ## Languages
58
  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.
59
  ```
60
+ d = load_dataset("clips/mfaq", "en") # replace "en" by any language listed below
61
  ```
62
 
63
  | Language | Key | Pairs | Pages |