Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
json
Size:
10M - 100M
ArXiv:
Tags:
question-answering
License:
Update README.md
Browse files
README.md
CHANGED
@@ -1889,10 +1889,10 @@ The **WebFAQ Q&A Dataset** is a broad-coverage corpus of **96 million** natural
|
|
1889 |
|
1890 |
The WebFAQ collection further includes:
|
1891 |
1. **Retrieval Datasets**
|
1892 |
-
If you need a curated subset of WebFAQ for **training or benchmarking retrieval models**, check out the [WebFAQ Retrieval Datasets](https://huggingface.co/datasets/
|
1893 |
|
1894 |
2. **Bilingual Corpora**
|
1895 |
-
WebFAQ also provides **QA-aligned bilingual datasets** (bitexts) created via state-of-the-art cross-lingual sentence embedding and automated translation evaluation. These can be used for **machine translation, bitext mining**, or **cross-lingual IR** experiments. Please check out the check out the [WebFAQ Bilingual Datasets](https://huggingface.co/datasets/
|
1896 |
|
1897 |
## Details
|
1898 |
|
@@ -1974,7 +1974,7 @@ Below is an example in Python using the 🤗 [Datasets library](https://github.c
|
|
1974 |
```python
|
1975 |
from datasets import load_dataset
|
1976 |
|
1977 |
-
dataset = load_dataset("
|
1978 |
|
1979 |
print(dataset[0])
|
1980 |
# Example output:
|
|
|
1889 |
|
1890 |
The WebFAQ collection further includes:
|
1891 |
1. **Retrieval Datasets**
|
1892 |
+
If you need a curated subset of WebFAQ for **training or benchmarking retrieval models**, check out the [WebFAQ Retrieval Datasets](https://huggingface.co/datasets/PaDaS-Lab/webfaq-retrieval), which include official train/test splits in 20 languages.
|
1893 |
|
1894 |
2. **Bilingual Corpora**
|
1895 |
+
WebFAQ also provides **QA-aligned bilingual datasets** (bitexts) created via state-of-the-art cross-lingual sentence embedding and automated translation evaluation. These can be used for **machine translation, bitext mining**, or **cross-lingual IR** experiments. Please check out the check out the [WebFAQ Bilingual Datasets](https://huggingface.co/datasets/PaDaS-Lab/webfaq-bitexts) for more information.
|
1896 |
|
1897 |
## Details
|
1898 |
|
|
|
1974 |
```python
|
1975 |
from datasets import load_dataset
|
1976 |
|
1977 |
+
dataset = load_dataset("PaDaS-Lab/webfaq", "eng")["default"]
|
1978 |
|
1979 |
print(dataset[0])
|
1980 |
# Example output:
|