Datasets:
Update README.md
Browse files
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 |
-
|
| 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 |
-
|
| 75 |
-
|
| 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
|