Downloads ยท 30 days
294
8% of all-time downloads
UBC-NLP/Simba-S
Simba-S is a automatic speech recognition model from UBC-NLP. Use it when you need speech turned into text. It is set up for transformers. The card lists the license as cc-by-4.0.
Downloads ยท 30 days
294
8% of all-time downloads
All-time downloads
3.7K
Public
Parameters
1.5B
6 GB on disk
Likes
6
Trending 2
Click a slice to open those files.
.safetensors6 GB ยท 99%
From the Hugging Face model README
Voice of a Continent is a comprehensive open-source ecosystem designed to bring African languages to the forefront of artificial intelligence. By providing a unified suite of benchmarking tools and state-of-the-art models, we ensure that the future of speech technology is inclusive, representative, and accessible to over a billion people.
Introduced in our EMNLP 2025 paper Voice of a Continent, the Simba Series represents the current state-of-the-art for African speech AI.
The Simba family consists of state-of-the-art models fine-tuned using SimbaBench. These models achieve superior performance by leveraging dataset quality, domain diversity, and language family relationships.
The New Standard for African Speech-to-Text
๐ฏ Task Automatic Speech Recognition โ Powering high-accuracy transcription across the continent.
๐ Language Coverage (43 African languages)
Amharic (
amh), Arabic (ara), Asante Twi (asanti), Bambara (bam), Baoulรฉ (bau), Bemba (bem), Ewe (ewe), Fanti (fat), Fon (fon), French (fra), Ganda (lug), Hausa (hau), Igbo (ibo), Kabiye (kab), Kinyarwanda (kin), Kongo (kon), Lingala (lin), Luba-Katanga (lub), Luo (luo), Malagasy (mlg), Mossi (mos), Northern Sotho (nso), Nyanja (nya), Oromo (orm), Portuguese (por), Shona (sna), Somali (som), Southern Sotho (sot), Swahili (swa), Swati (ssw), Tigrinya (tir), Tsonga (tso), Tswana (tsn), Twi (twi), Umbundu (umb), Venda (ven), Wolof (wol), Xhosa (xho), Yoruba (yor), Zulu (zul), Tamazight (tzm), Sango (sag), Dinka (din).
๐๏ธ Base Architectures
๐ Explore the Frontier
| ASR Models | Architecture | #Parameters | ๐ค Hugging Face Model Card | Status |
|---|---|---|---|---|
| ๐ฅSimba-S๐ฅ | SeamlessM4T-v2 | 2.3B | ๐ค https://huggingface.co/UBC-NLP/Simba-S | โ Released |
| ๐ฅSimba-W๐ฅ | Whisper | 1.5B | ๐ค https://huggingface.co/UBC-NLP/Simba-W | โ Released |
| ๐ฅSimba-X๐ฅ | Wav2Vec2 | 1B | ๐ค https://huggingface.co/UBC-NLP/Simba-X | โ Released |
| ๐ฅSimba-M๐ฅ | MMS | 1B | ๐ค https://huggingface.co/UBC-NLP/Simba-M | โ Released |
| ๐ฅSimba-H๐ฅ | HuBERT | 94M | ๐ค https://huggingface.co/UBC-NLP/Simba-H | โ Released |
๐งฉ Usage Example
You can easily run inference using the Hugging Face transformers library.
from transformers import pipeline
# Load Simba-S for ASR
asr_pipeline = pipeline(
"automatic-speech-recognition",
model="UBC-NLP/Simba-S" #Simba mdoels `UBC-NLP/Simba-S`, `UBC-NLP/Simba-W`, `UBC-NLP/Simba-X`, `UBC-NLP/Simba-H`, `UBC-NLP/Simba-M`
)
##### Load the multilingual African adapter (Only for `UBC-NLP/Simba-M`)
asr_pipeline.model.load_adapter("multilingual_african") # Only for `UBC-NLP/Simba-M`
###########################
# Transcribe audio from file
result = asr_pipeline("https://africa.dlnlp.ai/simba/audio/afr_Lwazi_afr_test_idx3889.wav")
print(result["text"])
# Transcribe audio from audio array
result = asr_pipeline({
"array": audio_array,
"sampling_rate": 16_000
})
print(result["text"])
Using the same audio file with different Simba models:
# Simba-S
{'text': 'watter verontwaardiging sou daar, in ons binneste gewees het.'}
# Simba-W
{'text': 'watter veronwaardigingsel daar, in ons binneste gewees het.'}
# Simba-X
{'text': 'fator fr on ar taamsodr is'}
# Simba-M
{'text': 'watter veronwaardiging sodaar in ons binniste gewees het'}
# Simba-H
{'text': 'watter vironwaardiging so daar in ons binneste geweeshet'}
Get started with Simba models in minutes using our interactive Colab notebook:
If you use the Simba models or SimbaBench benchmark for your scientific publication, or if you find the resources in this website useful, please cite our paper.
@inproceedings{elmadany-etal-2025-voice,
title = "Voice of a Continent: Mapping {A}frica{'}s Speech Technology Frontier",
author = "Elmadany, AbdelRahim A. and
Kwon, Sang Yun and
Toyin, Hawau Olamide and
Alcoba Inciarte, Alcides and
Aldarmaki, Hanan and
Abdul-Mageed, Muhammad",
editor = "Christodoulopoulos, Christos and
Chakraborty, Tanmoy and
Rose, Carolyn and
Peng, Violet",
booktitle = "Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing",
month = nov,
year = "2025",
address = "Suzhou, China",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2025.emnlp-main.559/",
doi = "10.18653/v1/2025.emnlp-main.559",
pages = "11039--11061",
ISBN = "979-8-89176-332-6",
}