GroupBERT: Enhanced Transformer Architecture with Efficient Grouped Structures
Paper • 2106.05822 • Published
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
MarathiNaad‑TTS is a high‑quality text‑to‑speech model for the Marathi language. It uses the KittenTTS library (a lightweight TTS engine) with an ONNX‑exported model for fast inference.
git clone https://huggingface.co/your-username/MarathiNaad-TTS
cd MarathiNaad-TTS
pip install -r requirements.txt
from marathitts import KittenTTS
# Load the model (local repo directory)
model = KittenTTS(local_dir=".")
# Generate speech
audio = model.generate("नमस्कार, आज आपण एका नवीन विषयवार चर्चा करणार आहोत .", voice="mf_asha", speed=1.0)
# Save to file
import soundfile as sf
sf.write("output.wav", audio, 24000)
| File | Size | Description |
|---|---|---|
model.onnx |
120 MB | Inference‑ready ONNX model |
config.json |
4 KB | Model configuration (sampling rate, phoneme set) |
vocab.txt |
2 KB | Token‑to‑phoneme mapping |
README.md |
— | This file |
requirements.txt |
— | Python dependencies |
phonemizer.evaluate.py (generates MOS on a held‑out set).This model is released under the Apache‑2.0 License. See LICENSE for details.
If you use this model in research, please cite:
@misc{MarathiNaadTTS,
author = Abhishek Daygavhane,
title = MarathiNaad‑TTS: Marathi Text‑to‑Speech using KittenTTS,
year = 2026,
url = https://huggingface.co/your-username/MarathiNaad-TTS
}
Open an issue on this repository or contact abhishekdaygavhane@gmail.com.