--- license: apache-2.0 language: - am - ee - ha - ig - kin - ln - lug - orm - sna - sot - sw - tw - wo - xh - vai - yo - zu - en multilinguality: - multilingual pretty_name: injongoIntent size_categories: - n<1K language_details: >- amh, eng, ewe, hau, ibo, kin, lin, lug, orm, sna, sot, swa, twi, wol, xho, yor, zul source_datasets: - gsm8k tags: - injongoIntent - injongo-intent - injongointent task_categories: - text2text-generation task_ids: - natural-language-inference configs: - config_name: amh data_files: - split: train path: amh/dev.jsonl - split: test path: amh/test.jsonl - config_name: eng data_files: - split: train path: eng/dev.jsonl - split: test path: eng/test.jsonl - config_name: ewe data_files: - split: train path: ewe/dev.jsonl - split: test path: ewe/test.jsonl - config_name: hau data_files: - split: train path: hau/dev.jsonl - split: test path: hau/test.jsonl - config_name: ibo data_files: - split: train path: ibo/dev.jsonl - split: test path: ibo/test.jsonl - config_name: kin data_files: - split: train path: kin/dev.jsonl - split: test path: kin/test.jsonl - config_name: lin data_files: - split: train path: lin/dev.jsonl - split: test path: lin/test.jsonl - config_name: lug data_files: - split: train path: lug/dev.jsonl - split: test path: lug/test.jsonl - config_name: orm data_files: - split: train path: orm/dev.jsonl - split: test path: orm/test.jsonl - config_name: sna data_files: - split: train path: sna/dev.jsonl - split: test path: sna/test.jsonl - config_name: sot data_files: - split: train path: sot/dev.jsonl - split: test path: sot/test.jsonl - config_name: swa data_files: - split: train path: swa/dev.jsonl - split: test path: swa/test.jsonl - config_name: twi data_files: - split: train path: twi/dev.jsonl - split: test path: twi/test.jsonl - config_name: wol data_files: - split: train path: wol/dev.jsonl - split: test path: wol/test.jsonl - config_name: xho data_files: - split: train path: xho/dev.jsonl - split: test path: xho/test.jsonl - config_name: yor data_files: - split: train path: yor/dev.jsonl - split: test path: yor/test.jsonl - config_name: zul data_files: - split: train path: zul/dev.jsonl - split: test path: zul/test.jsonl --- # Dataset Card for afrimgsm ## Table of Contents - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) ## Dataset Description - **Point of Contact:** d.adelani@ucl.ac.uk ### Dataset Summary AFRIMGSM is an evaluation dataset comprising translations of a subset of the GSM8k dataset into 16 African languages. It includes test sets across all 18 languages, maintaining an English and French subsets from the original GSM8k dataset. ### Languages There are 18 languages available : ## Dataset Structure ### Data Instances The examples look like this for English: ``` from datasets import load_dataset data = load_dataset('masakhane/afrimgsm', 'eng') # Please, specify the language code # A data point example is below: { 'question': 'A football team played 22 games. They won 8 more than they lost. How many did they win?', 'answer': 15 } ``` ### Data Fields - `question`: the question string to a grade school math problem. - `answer`: the final numeric solution. ### Data Splits All languages has two split the `train` and `test` and they correspond with the original `train` and `test` splits of the GSM8k dataset. The splits have the following sizes : | Language | train | test | |----------|------:|-----:| | am | 8 | 250 | | ee | 8 | 250 | | ha | 8 | 250 | | kin | 8 | 250 | | ln | 8 | 250 | | lug | 8 | 250 | | orm | 8 | 250 | | sna | 8 | 250 | | sw | 8 | 250 | | tw | 8 | 250 | | vai | 8 | 250 | | wo | 8 | 250 | | xh | 8 | 250 | | yo | 8 | 250 | | zu | 8 | 250 | | en | 8 | 250 | | fr | 8 | 250 |