--- dataset_info: features: - name: english_text dtype: string - name: english_audio dtype: audio - name: naija_text dtype: string - name: naija_audio dtype: audio - name: speaker dtype: string splits: - name: igbo num_bytes: 77329160 num_examples: 500 - name: yoruba num_bytes: 107895468 num_examples: 500 - name: hausa num_bytes: 238658365 num_examples: 500 download_size: 423205037 dataset_size: 423882993 configs: - config_name: default data_files: - split: igbo path: data/igbo-* - split: yoruba path: data/yoruba-* - split: hausa path: data/hausa-* license: apache-2.0 task_categories: - automatic-speech-recognition - text-to-speech - translation - text-classification language: - en - ig - yo - ha multilinguality: multilingual language_creators: - AfroVoices tags: - audio - text - speech-translation - text-translation - machine-translation - automatic-speech-recognition - low-resource - derived-from-fleurs - afrovoices - igbo - yoruba - hausa pretty_name: Hypa_Fleurs size_categories: - 1K Below is a bird's eye view of the directory structure for this repository: ``` Hypa_Fleurs/ ├── README.md ├── LICENSE ├── data/ │ ├── text/ │ └── audio/ │ ├── english/ │ ├── igbo/ │ ├── yoruba/ │ └── hausa/ ├── metadata/ │ ├── text_metadata.json │ └── audio_metadata.json └── examples/ └── load_dataset.py ``` --- ## Usage ### Loading with Hugging Face Datasets The dataset is available on Hugging Face and can be loaded using the [`datasets`](https://huggingface.co/docs/datasets/) library. For example: ```python from datasets import load_dataset # Load the text-to-text translation part dataset = load_dataset("hypaai/Hypa_Fleurs", split="igbo") print(dataset[0]) ``` --- ## Data Preparation - **Source Data:** We started with the English split of Google Fleurs. - **Translation:** Professional AfroVoices experts translated the texts into Igbo, Yoruba, and Hausa. - **Recording:** The same experts recorded high-quality audio for both the original English texts and the translations. - **Alignment:** Each text entry is aligned with its corresponding audio recording, ensuring consistency across modalities. - **Preprocessing:** All data were processed to ensure uniformity in encoding (UTF-8 for text, standardized audio formats) and split distribution across each language. --- ## Applications The Hypa_Fleurs dataset can be used for various research and development tasks, including but not limited to: - **Machine Translation:** Training and evaluating translation models between English and African languages. - **Speech Recognition (ASR):** Developing systems that can transcribe speech in under-resourced languages. - **Text-to-Speech (TTS):** Creating natural-sounding TTS systems using paired audio-text data. - **Cross-lingual Learning:** Supporting transfer learning and multilingual model training. - **Language Identification (LI):** Identifying spoken or written languages (speech or text). --- ## Licensing and Citation This dataset is released under an [Open Source License](./LICENSE) (apache-2.0). Please refer to the LICENSE file for full details. When using **Hypa_Fleurs** in your work, please cite both this dataset and the original [Google Fleurs](https://ai.google/tools/datasets/google-fleurs) dataset as follows: ```bibtex @inproceedings{googlefleurs, title={Google Fleurs: A Multilingual Speech Dataset}, author={Google AI}, booktitle={Conference on Speech and Language Processing}, year={2021} } @misc{hypafleurs, title={Hypa_Fleurs: Multilingual Text and Speech Dataset for Low-Resource Languages}, author={AfroVoices}, note={Open-sourced on Hugging Face}, year={2025}, url={https://huggingface.co/datasets/hypaai/Hypa_Fleurs} } ``` --- ## Acknowledgements - **Google Fleurs Team:** For creating the foundational dataset. - **AfroVoices Experts:** For their translation expertise and high-quality audio recordings. - **Community Contributions:** We thank all contributors and users who help improve this dataset. --- ## Contact and Contributions For any questions, issues, or contributions, please open an issue in this repository or contact [hypa.ai.ng@gmail.com](mailto:hypa.ai.ng@gmail.com). Contributions are welcome! --- ## Closing Remarks By making Hypa_Fleurs available, we hope to empower research and development in multilingual and speech technologies for African languages. Hypa AI remains steadfast in its mission to pioneer intelligent solutions that are not just technologically advanced but are also culturally aware, ensuring that the future of AI is as diverse and inclusive as the world it serves. AfroVoices, a subsidiary of Hypa AI, is dedicated to amplifying African voices, languages, and cultures in the intelligence age. Focused on bridging the digital representation gap, AfroVoices curates datasets and resources for African languages, promoting inclusivity and cultural appreciation in AI technologies. Their mission goes beyond technological innovation, aiming to celebrate the richness of African linguistic diversity on a global stage. ---