Datasets:

Multilinguality:
multilingual
Size Categories:
unknown
Language Creators:
other
Annotations Creators:
no-annotation
Source Datasets:
original
Tags:
License:
maximedb commited on
Commit
455b07a
1 Parent(s): 430b20d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -62,7 +62,7 @@ task_ids:
62
  MQA is a Multilingual corpus of Questions and Answers (MQA) parsed from the [Common Crawl](https://commoncrawl.org/). Questions are divided in two types: *Frequently Asked Questions (FAQ)* and *Community Question Answering (CQA)*.
63
  ```python
64
  from datasets import load_dataset
65
- all = load_dataset("clips/mqa", language="en")
66
  {
67
  "name": "the title of the question (if any)",
68
  "text": "the body of the question (if any)",
@@ -71,8 +71,8 @@ all = load_dataset("clips/mqa", language="en")
71
  "is_accepted": "true|false"
72
  }]
73
  }
74
- faq = load_dataset("clips/mqa", scope="faq", language="en")
75
- cqa = load_dataset("clips/mqa", scope="cqa", language="en")
76
  ```
77
 
78
  ## Languages
 
62
  MQA is a Multilingual corpus of Questions and Answers (MQA) parsed from the [Common Crawl](https://commoncrawl.org/). Questions are divided in two types: *Frequently Asked Questions (FAQ)* and *Community Question Answering (CQA)*.
63
  ```python
64
  from datasets import load_dataset
65
+ all_data = load_dataset("clips/mqa", language="en")
66
  {
67
  "name": "the title of the question (if any)",
68
  "text": "the body of the question (if any)",
 
71
  "is_accepted": "true|false"
72
  }]
73
  }
74
+ faq_data = load_dataset("clips/mqa", scope="faq", language="en")
75
+ cqa_data = load_dataset("clips/mqa", scope="cqa", language="en")
76
  ```
77
 
78
  ## Languages