Model reference · open weights
F5-Myanmar-TTS is an open-weight audio or speech model from freococo. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | freococo |
|---|---|
| Type | Audio & music |
| Task | Text→speech |
| Parameters (lead) | 337M |
| Runs with | f5-tts |
| Released | 2026-09-05 |
| Popularity | 564 downloads / month |
| Licence | Commercial licence needed |
About
The official v2 release of the F5-TTS (Flow-Matching Diffusion Transformer) Burmese speech foundation model, trained on 794.5+ hours of Burmese speech across 36 full epochs (1,025,604 updates).
"They are fighting for people's freedom. I am fighting for the language's freedom. I just want to preserve their beautiful, lovely, and brave voices embedded in AI to last forever — marking the first time in history for a massive Burmese open-source TTS foundation model."
model_1020000.pt, model_1025000.pt, and model_last.pt) are included under checkpoints/ for developers wanting to continue fine-tuning.f5-myanmar-tts)The easiest way to use this model is with the official PyPI package:
pip install --upgrade f5-myanmar-tts
from f5_myanmar_tts import MyanmarTTS
# Auto-downloads lightweight v2 FP16 model (~674MB) on first run
tts = MyanmarTTS()
# Generate Burmese speech
tts.speak(
"လူသားတွေ အားလုံးကို အယုတ်အလတ်အမြတ်မရွေး ချစ်ခင်လေးစားပါ",
output_file="speech.wav"
)
tts.speak(
text="ဒါကြောင့် အုံ့မှိုင်းနေတဲ့ ကောင်းကင်ကို အမိန့်ပေးပြီး မိုးကောင်းကင် တံခါးတွေကို ဖွင့်လိုက်တယ်",
ref_audio="my_voice.wav",
ref_text="အပြင် မသွားရလို့ စိတ်ညစ်နေပါတယ် မိုးတွေ တအား ရွာနေပါတယ်",
output_file="cloned_speech.wav"
)
| Parameter | Specification |
|---|---|
| Architecture | Diffusion Transformer (DiT Base) |
| Parameters | 337,138,310 (~337M) |
| Layers / Heads / Dim | 22 layers, 16 heads, dim=1024, text_dim=512 |
| Training Steps | 36 Epochs (1,025,604 updates) |
| Training Audio | 794.5+ Hours Burmese Speech |
| Sampling Rate | 24,000 Hz |
| Vocoder | Vocos (24kHz Mel) |
| Vocabulary | 2,626 Burmese & Pāḷi Unicode Tokens |
| Format | Safetensors (674 MB FP16 Pruned EMA weights) |
| License | Creative Commons Attribution-NonCommercial 4.0 (CC BY-NC 4.0) |
Released under the Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) license. Dedicated to free public research, language preservation, education, and open-source innovation.
From the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys f5-myanmar-tts for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (f5-myanmar-tts below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/audio/transcriptions \ -H "Authorization: Bearer $AXFORGE_API_KEY" \ -F model="f5-myanmar-tts" -F file=@audio.mp3
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.