Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -11,14 +11,14 @@ tags:
|
|
| 11 |
- question-answering
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
|
| 23 |
## Languages
|
| 24 |
|
|
@@ -27,25 +27,25 @@ ind, tha
|
|
| 27 |
## Supported Tasks
|
| 28 |
|
| 29 |
Question Answering
|
| 30 |
-
|
| 31 |
## Dataset Usage
|
| 32 |
### Using `datasets` library
|
| 33 |
```
|
| 34 |
-
|
| 35 |
-
|
| 36 |
```
|
| 37 |
### Using `seacrowd` library
|
| 38 |
```import seacrowd as sc
|
| 39 |
# Load the dataset using the default config
|
| 40 |
-
|
| 41 |
# Check all available subsets (config names) of the dataset
|
| 42 |
-
|
| 43 |
# Load the dataset using a specific config
|
| 44 |
-
|
| 45 |
```
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
|
| 50 |
## Dataset Homepage
|
| 51 |
|
|
|
|
| 11 |
- question-answering
|
| 12 |
---
|
| 13 |
|
| 14 |
+
TyDi QA is a question answering dataset covering 11 typologically diverse languages with 204K question-answer pairs.
|
| 15 |
+
The languages of TyDi QA are diverse with regard to their typology -- the set of linguistic features that each language
|
| 16 |
+
expresses -- such that we expect models performing well on this set to generalize across a large number of the languages
|
| 17 |
+
in the world. It contains language phenomena that would not be found in English-only corpora. To provide a realistic
|
| 18 |
+
information-seeking task and avoid priming effects, questions are written by people who want to know the answer, but
|
| 19 |
+
don’t know the answer yet, (unlike SQuAD and its descendents) and the data is collected directly in each language
|
| 20 |
+
without the use of translation (unlike MLQA and XQuAD).
|
| 21 |
+
|
| 22 |
|
| 23 |
## Languages
|
| 24 |
|
|
|
|
| 27 |
## Supported Tasks
|
| 28 |
|
| 29 |
Question Answering
|
| 30 |
+
|
| 31 |
## Dataset Usage
|
| 32 |
### Using `datasets` library
|
| 33 |
```
|
| 34 |
+
from datasets import load_dataset
|
| 35 |
+
dset = datasets.load_dataset("SEACrowd/tydiqa", trust_remote_code=True)
|
| 36 |
```
|
| 37 |
### Using `seacrowd` library
|
| 38 |
```import seacrowd as sc
|
| 39 |
# Load the dataset using the default config
|
| 40 |
+
dset = sc.load_dataset("tydiqa", schema="seacrowd")
|
| 41 |
# Check all available subsets (config names) of the dataset
|
| 42 |
+
print(sc.available_config_names("tydiqa"))
|
| 43 |
# Load the dataset using a specific config
|
| 44 |
+
dset = sc.load_dataset_by_config_name(config_name="<config_name>")
|
| 45 |
```
|
| 46 |
+
|
| 47 |
+
More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
|
| 48 |
+
|
| 49 |
|
| 50 |
## Dataset Homepage
|
| 51 |
|