Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -88,7 +88,7 @@ configs:
|
|
| 88 |
- split: JB
|
| 89 |
path: "data/questions_hf/West_Java_questions.json"
|
| 90 |
- config_name: multiple-choice-questions
|
| 91 |
-
data_files: "
|
| 92 |
---
|
| 93 |
# BLEnD
|
| 94 |
|
|
@@ -106,7 +106,14 @@ Furthermore, we find that LLMs perform better in their local languages for mid-t
|
|
| 106 |
|
| 107 |
## Dataset
|
| 108 |
All the data samples for short-answer questions, including the human-annotated answers, can be found in the `data/` directory.
|
| 109 |
-
Specifically, the annotations from each country are included in the `annotations
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
Each file includes a JSON variable with question IDs, questions in the local language and English, the human annotations both in the local language and English, and their respective vote counts as values. The same dataset for South Korea is shown below:
|
| 111 |
```JSON
|
| 112 |
[{
|
|
|
|
| 88 |
- split: JB
|
| 89 |
path: "data/questions_hf/West_Java_questions.json"
|
| 90 |
- config_name: multiple-choice-questions
|
| 91 |
+
data_files: "data/mc_questions_hf/mc_questions_file.json"
|
| 92 |
---
|
| 93 |
# BLEnD
|
| 94 |
|
|
|
|
| 106 |
|
| 107 |
## Dataset
|
| 108 |
All the data samples for short-answer questions, including the human-annotated answers, can be found in the `data/` directory.
|
| 109 |
+
Specifically, the annotations from each country are included in the `annotations` split, and each country/region's data can be accessed by **country codes**.
|
| 110 |
+
```Python
|
| 111 |
+
from datasets import load_dataset
|
| 112 |
+
|
| 113 |
+
annotations = load_dataset("nayeon212/BLEnD",'annotations')
|
| 114 |
+
|
| 115 |
+
# To use
|
| 116 |
+
```
|
| 117 |
Each file includes a JSON variable with question IDs, questions in the local language and English, the human annotations both in the local language and English, and their respective vote counts as values. The same dataset for South Korea is shown below:
|
| 118 |
```JSON
|
| 119 |
[{
|