license: apache-2.0
AYA Amharic Dataset
This is the Amharic-only extract from the Aya Dataset, a multilingual instruction fine-tuning dataset.
By @henok
Dataset Summary
The Aya Dataset
is a multilingual instruction fine-tuning dataset curated by an open-science community via Aya Annotation Platform from Cohere For AI. The dataset contains a total of 204k human-annotated prompt-completion pairs along with the demographics data of the annotators.
This dataset can be used to train, finetune, and evaluate multilingual LLMs.
Curated by: Contributors of Aya Open Science Intiative.
Language(s): 65 languages (71 including dialects & scripts).
License: Apache 2.0
Aya Datasets Family:
Name Explanation aya_dataset Human-annotated multilingual instruction finetuning dataset, comprising over 204K instances across 65 languages. aya_collection Created by applying instruction-style templates from fluent speakers to 44 datasets, including translations of 19 instruction-style datasets into 101 languages, providing 513M instances for various tasks. aya_evaluation_suite A diverse evaluation set for multilingual open-ended generation, featuring 250 culturally grounded prompts in 7 languages, 200 translated prompts in 24 languages, and human-edited versions selected for cross-cultural relevance from English Dolly in 6 languages.
Dataset
The Aya Dataset
comprises of two types of data:
- Human Annotations: Original annotations (brand new prompts and completions written by annotators) and re-annotations (human edits of automatically generated prompts and completions).
- Demographics Data: Anonymized information for each annotator.
Load with Datasets
To load this dataset consisting of both prompt-completions and demographics data with datasets
, you'll just need to install Datasets as pip install datasets --upgrade
and then use the following code:
from datasets import load_dataset
# Load the annotations dataset
aya_dataset = load_dataset("CohereForAI/aya_dataset")
# Load the demographics dataset
aya_demographics = load_dataset("CohereForAI/aya_dataset", "demographics")
Data Fields
Human Annotations (Default)
The data fields are the same among all splits:
inputs
: Prompt or input to the language model.targets
: Completion or output of the language model.language
: The language of theinputs
andtargets
.language_code
: The ISO code for the language of theinputs
andtargets
.annotation_type
: The value denoting whetherinputs
andtargets
are 'original_annotations' or 're-annotations'.user_id
: Unique identifier of the annotator who submitted the prompt-completion pair.
Data Instances
Human Annotations (Default)
An example of train
looks as follows:
{
"inputs": "What cultural events or festivals add vibrancy to Colombo's calendar...",
"targets": "Colombo's cultural calendar is adorned with diverse events and festivals that celebrate the city's rich tapestry of traditions...",
"language": "English",
"language_code": "eng",
"annotation_type": "original-annotations",
"user_id": "f0ff69570af705b75c5a0851883e..."
}
Additional Information
Provenance
- Methods Used: Crowd-sourced through volunteer annotations, followed by a quality assessment phase in which samples from the dataset were checked.
- Methodology Details:
- Source: Original annotations and edits of opensource NLP datasets
- Platform: Aya Annotation Platform
- Dates of Collection: May 2023 - Dec 2023
Authorship
- Publishing Organization: Cohere For AI
- Industry Type: Not-for-profit - Tech
- Contact Details: https://aya.for.ai/
Licensing Information
This dataset can be used for any purpose, whether academic or commercial, under the terms of the Apache 2.0 License.
Citation Information
@misc{singh2024aya,
title={Aya Dataset: An Open-Access Collection for Multilingual Instruction Tuning},
author={Shivalika Singh and Freddie Vargus and Daniel Dsouza and Börje F. Karlsson and Abinaya Mahendiran and Wei-Yin Ko and Herumb Shandilya and Jay Patel and Deividas Mataciunas and Laura OMahony and Mike Zhang and Ramith Hettiarachchi and Joseph Wilson and Marina Machado and Luisa Souza Moura and Dominik Krzemiński and Hakimeh Fadaei and Irem Ergün and Ifeoma Okoh and Aisha Alaagib and Oshan Mudannayake and Zaid Alyafeai and Vu Minh Chien and Sebastian Ruder and Surya Guthikonda and Emad A. Alghamdi and Sebastian Gehrmann and Niklas Muennighoff and Max Bartolo and Julia Kreutzer and Ahmet Üstün and Marzieh Fadaee and Sara Hooker},
year={2024},
eprint={2402.06619},
archivePrefix={arXiv},
primaryClass={cs.CL}
}