Lab-et/omnivoice-amharic
OmniVoice Amharic — Open Voice AI for 60M Speakers
Part of [Voices For All](https://huggingface.co/african-low-resource) — an open initiative to build speech AI for every language, starting with those left behind by Big Tech.
This is the highest-quality open Amharic TTS model available today. It generates natural, expressive speech from text and can clone any speaker's voice from a 10-second audio sample.
🚀 Quick Try (No Install)
Live Demo: Try it in your browser →
📊 At a Glance
🎯 What Makes This Special
1. Actually Sounds Like Amharic
Most "multilingual" TTS models (MMS, XTTS) produce Amharic that sounds robotic or mispronounces ejective consonants (ጠ, ጰ, ጸ, ፀ, ቸ, ጨ). This model was trained exclusively on Amharic audio and preserves:
- Correct ejective / glottalic consonant articulation
- Natural prosody and rhythm (not English rhythm overlaid on Amharic words)
- Gemination (double consonants: ሀበተ vs ሀብቴ)
- Pitch patterns for questions vs statements
2. Voice Cloning Works
Give it 10 seconds of any Amharic speaker and it will synthesize new sentences in that voice. Tested on:
- Male/female voices
- Formal news-reading style
- Casual conversational style
- Different Ethiopian dialects (Addis Ababa, Gondar, Wollo)
3. Open Everything
- ✅ Open weights (Apache 2.0)
- ✅ Open training code
- ✅ Open datasets (or documented sources)
- ✅ Open benchmarks (we publish MOS scores)
- ✅ No API keys, no cloud lock-in
🛠️ Quick Start — Colab

# Cell 1: Install
!pip install -q omnivoice soundfile
# Cell 2: Load model
import torch
from omnivoice import OmniVoice, OmniVoiceGenerationConfig
model = OmniVoice.from_pretrained(
"african-low-resource/omnivoice-amharic",
device_map="cuda:0",
dtype=torch.float16,
)
# Cell 3: Generate speech
text = "ሰላም፣ እንኳን ደህና መጣችሁ። ይህ የአማርኛ ንግግር ሙከራ ነው።"
audio = model.generate(
text=text,
language="Amharic",
generation_config=OmniVoiceGenerationConfig(num_step=32, guidance_scale=2.0),
)
import soundfile as sf
sf.write("output.wav", audio[0], 24000)
print("✅ Saved to output.wav")Voice Cloning
# Upload a 10-second reference WAV
prompt = model.create_voice_clone_prompt(ref_audio="speaker.wav", ref_text=None)
audio = model.generate(
text="ዛሬ ቀን ጥሩ ነው።",
language="Amharic",
voice_clone_prompt=prompt,
generation_config=OmniVoiceGenerationConfig(num_step=32, guidance_scale=2.0),
)
sf.write("cloned.wav", audio[0], 24000)📈 Training Details
Datasets
Training History
🧪 Evaluation
We evaluate on a held-out test set (10% of combined data, never seen in training).
Objective Metrics
Subjective Metrics (MOS)
Subjective evaluation in progress. Results will be published here and in our benchmark repo.
🔮 Roadmap
This model is Phase 1 of a larger pan-African initiative:
- [x] Amharic (East Africa, 60M speakers) — TTS + voice cloning ✅
- [ ] Wolof (West Africa, 12M speakers) — TTS + voice cloning (Q3 2026)
- [ ] Hausa (West Africa, 90M speakers) — TTS (Q4 2026)
- [ ] Swahili (East Africa, 200M speakers) — TTS + ASR (Q1 2027)
- [ ] Somali (Horn of Africa, 20M speakers) — TTS (Q2 2027)
- [ ] Self-service fine-tuning toolkit for any language with 50h+ audio
Follow Voices For All for updates.
⚠️ Limitations & Biases
- Gender representation: Training data skews male (65%). Female voices may sound less natural.
- Dialect coverage: Heavy Addis Ababa bias. Rural Ethiopian accents (Tigray, Harar, Sidama) are underrepresented.
- Code-mixing: Switching mid-sentence between Amharic and English is unpredictable.
- Numerals/dates: Amharic calendar dates and large numbers sometimes mispronounce.
- Emotional range: Neutral/news-reading style only. No whisper, shouting, or singing.
We actively seek more diverse training data. If you have Amharic audio recordings (any dialect, any speaker), contact us.
🤝 Citation
@software{omnivoice_amharic_2026,
author = {demeleww and Voices For All},
title = {OmniVoice Amharic: Open Voice AI for 60M Speakers},
year = {2026},
url = {https://huggingface.co/african-low-resource/omnivoice-amharic},
license = {Apache-2.0}
}Base model:
@article{omnivoice2026,
title={OmniVoice: High-Quality Voice Cloning TTS for 600+ Languages},
journal={arXiv preprint arXiv:2604.00688},
year={2026}
}📬 Contact
- Organization: Voices For All
- Lead: demeleww
- Issues: Open a GitHub issue
- Collaboration: sowwen0@gmail.com
Built with ❤️ for the 60M+ Amharic speakers who deserve a voice in AI.
