CLEAR-Global/marmaspeak-text
Viewer • Updated • 5.68k • 47 • 1
This model provides text-to-speech synthesis for the Marma language (ISO code: rmz), a Tibeto-Burman language spoken by the Marma people in Bangladesh and Myanmar.
This model can be used with the 🤗 Transformers library:
from transformers import VitsModel, AutoTokenizer, pipeline
import scipy.io.wavfile
# Load model and tokenizer
model = VitsModel.from_pretrained("CLEAR-Global/marmaspeak-tts-v1")
tokenizer = AutoTokenizer.from_pretrained("CLEAR-Global/marmaspeak-tts-v1")
# Create a pipeline
synthesizer = pipeline("text-to-speech", model=model, tokenizer=tokenizer)
# Synthesize text
text = "ကိုတော် ဇာမာ နီရေလည်း၊" # Marma text example
output = synthesizer(text)
# Save to file
scipy.io.wavfile.write("output.wav", rate=16000, data=output["audio"][0])
The model was fine-tuned from a Massively Multilingual Speech (MMS) VITS model using this training recipe.
This model has been developed with permission and input from Marma language speakers. The voice synthesis should be used responsibly and respectfully.
@misc{marma-tts,
author = {CLEAR Global},
title = {MarmaSpeakTTS: A Text-to-Speech Model for Marma Language},
year = {2025},
howpublished = {https://huggingface.co/CLEAR-Global/marmaspeak-tts-v1}
}