--- license: cc-by-sa-4.0 task_categories: - question-answering language: - en - zh - es - id - ko - el - fa - ar - az - su - as - ha - am size_categories: - 10K= 2.19.2 pandas >= 2.1.4 ``` ## Dataset All the data samples for short-answer questions, including the human-annotated answers, can be found in the `data/` directory. Specifically, the annotations from each country are included in the `annotations` split, and each country/region's data can be accessed by **[country codes](https://huggingface.co/datasets/nayeon212/BLEnD#countryregion-codes)**. ```Python from datasets import load_dataset annotations = load_dataset("nayeon212/BLEnD",'annotations') # To access data from Assam: assam_annotations = annotations['AS'] ``` 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: ```JSON [{ "ID": "Al-en-06", "question": "대한민국 학교 급식에서 흔히 볼 수 있는 음식은 무엇인가요?", "en_question": "What is a common school cafeteria food in your country?", "annotations": [ { "answers": [ "김치" ], "en_answers": [ "kimchi" ], "count": 4 }, { "answers": [ "밥", "쌀밥", "쌀" ], "en_answers": [ "rice" ], "count": 3 }, ... ], "idks": { "idk": 0, "no-answer": 0, "not-applicable": 0 } }], ``` The topics and source language for each question can be found in `short-answer-questions` split. Questions for each country in their local languages and English can be accessed by **[country codes](https://huggingface.co/datasets/nayeon212/BLEnD#countryregion-codes)**. Each CSV file question ID, topic, source language, question in English, and the local language (in the `Translation` column) for all questions. ```Python from datasets import load_dataset questions = load_dataset("nayeon212/BLEnD",'short-answer-questions') # To access data from Assam: assam_questions = questions['AS'] ``` The current set of multiple choice questions and their answers can be found at the `multiple-choice-questions` split. ```Python from datasets import load_dataset mcq = load_dataset("nayeon212/BLEnD",'multiple-choice-questions') ``` ### Country/Region Codes | **Country/Region** | **Code** | **Language** | **Code**| |:--------:|:--------------:|:------------:|:------------:| | United States | US | English | en | United Kingdom | GB | English |en | China | CN | Chinese | zh | Spain | ES | Spanish | es | Mexico | MX |Spanish|es | Indonesia | ID | Indonesian | id | South Korea | KR | Korean | ko | North Korea | KP | Korean |ko | Greece | GR | Greek | el | Iran | IR | Persian | fa | Algeria | DZ | Arabic | ar | Azerbaijan | AZ | Azerbaijani | az | West Java | JB | Sundanese | su | Assam | AS | Assamese | as | Northern Nigeria | NG | Hausa | ha | Ethiopia | ET | Amharic | am