Datasets:

Modalities:
Text
Formats:
json
ArXiv:
Libraries:
Datasets
pandas
License:
nayeon212 commited on
Commit
77db244
1 Parent(s): 4c1dec8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -4
README.md CHANGED
@@ -88,7 +88,9 @@ configs:
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
 
@@ -112,7 +114,8 @@ 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
@@ -152,8 +155,23 @@ Each file includes a JSON variable with question IDs, questions in the local lan
152
  ```
153
 
154
  The topics and source language for each question can be found in `short-answer-questions` split.
155
- Questions for each country in their local languages and English can be accessed by **country codes**. Each CSV file question ID, topic, source language, question in English, and the local language (in the `Translation` column) for all questions.
 
 
 
156
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  | **Country/Region** | **Code** | **Language** | **Code**|
158
  |:--------:|:--------------:|:------------:|:------------:|
159
  | United States | US | English | en
@@ -173,4 +191,3 @@ Questions for each country in their local languages and English can be accessed
173
  | Northern Nigeria | NG | Hausa | ha
174
  | Ethiopia | ET | Amharic | am
175
 
176
- The current set of multiple choice questions and their answers can be found at the `multiple-choice-questions` split.
 
88
  - split: JB
89
  path: "data/questions_hf/West_Java_questions.json"
90
  - config_name: multiple-choice-questions
91
+ data_files:
92
+ - split: test
93
+ path: "data/mc_questions_hf/mc_questions_file.json"
94
  ---
95
  # BLEnD
96
 
 
114
 
115
  annotations = load_dataset("nayeon212/BLEnD",'annotations')
116
 
117
+ # To access data from Assam:
118
+ assam_annotations = annotations['AS']
119
  ```
120
  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:
121
  ```JSON
 
155
  ```
156
 
157
  The topics and source language for each question can be found in `short-answer-questions` split.
158
+ Questions for each country in their local languages and English can be accessed by **country codes**.
159
+ Each CSV file question ID, topic, source language, question in English, and the local language (in the `Translation` column) for all questions.
160
+ ```Python
161
+ from datasets import load_dataset
162
 
163
+ questions = load_dataset("nayeon212/BLEnD",'short-answer-questions')
164
+
165
+ # To access data from Assam:
166
+ assam_questions = questions['AS']
167
+ ```
168
+ The current set of multiple choice questions and their answers can be found at the `multiple-choice-questions` split.
169
+ ```Python
170
+ from datasets import load_dataset
171
+
172
+ mcq = load_dataset("nayeon212/BLEnD",'multiple-choice-questions')
173
+ ```
174
+ ### Country/Region Codes
175
  | **Country/Region** | **Code** | **Language** | **Code**|
176
  |:--------:|:--------------:|:------------:|:------------:|
177
  | United States | US | English | en
 
191
  | Northern Nigeria | NG | Hausa | ha
192
  | Ethiopia | ET | Amharic | am
193