ampixa/real-nepali-v0.2-kala
Kala — Nepali TTS v0.2
The first open-source Nepali TTS model built on a hand-crafted G2P — no eSpeak.
Kala is a multi-speaker VITS model trained with the real_nepali G2P frontend: a rule-and-lexicon system grounded in Khatiwada 2009 and tuned to mainstream Kathmandu Nepali phonology. The ONNX model runs on CPU in real time (RTF ≈ 0.02 — 50× faster than real time on a laptop).
▶ Try it live: ampixa-real-nepali-tts.hf.space
Why a new G2P?
eSpeak-ng's ne voice was designed for phoneme coverage, not phonological accuracy. It maps Nepali affricates to alveolar labels (ts, tsh) that do not match how Kathmandu speakers produce च and छ. It silently loses gemination and does not handle Latin code-switching at all.
The real_nepali frontend:
On the NepTTS-Bench minimal-pairs test (365 sentences), the frontend reaches 99.5 % minimal-pair contrast preservation against the reference IPA transcriptions.
Available speakers
Recommended speaker: kala for demo and production use. The corpus speakers (slr143F, slr43*) have good prosody but recording conditions vary; barsha is the second-best human voice.
Quick start (Python)
pip install kala-ttsimport kala_tts
# Returns WAV bytes (16-bit PCM, 22050 Hz mono)
wav = kala_tts.synthesize("नमस्कार, कसरी हुनुहुन्छ?", speaker="kala")
# Write directly to a file
kala_tts.synthesize_to_file(
"नेपाल सुन्दर देश हो।",
"output.wav",
speaker="kala",
)
# List available speakers
print(kala_tts.list_speakers())
# ('kala', 'barsha', 'slr143_F', 'slr43_0546', 'slr43_2099')# CLI
kala-tts "नमस्कार, कसरी हुनुहुन्छ?" --speaker kala -o out.wav
kala-tts --list-speakersThe first call downloads the ONNX model (~60 MB) from this repo and caches it locally via huggingface_hub.
Manual inference (no pip)
Download the ONNX and config files from this repo, then:
git clone https://github.com/Ampixa/nepa-newa-text-frontend
cd nepa-newa-text-frontend
pip install onnxruntime huggingface_hub numpy
python -m kala_tts "नमस्कार" -o out.wavOr use piper directly:
pip install piper-tts
echo "नमस्कार, कसरी हुनुहुन्छ?" | \
piper --model real_nepali_v02_kala.fp32.onnx --speaker_id 2 --output_file out.wavONNX model details
Training details
Checkpoint SHA-256:
2b36b27f42e8549658676f953704573a31e2155fc95ec5d6407561e9fc4797faTraining data
Known limitations
- Naturalness gap: Trained on only 200 utterances for the Kala voice; prosody can be flat on long sentences.
- Punctuation awareness: Periods, commas, and question marks are handled via deterministic pause insertion — the model does not learn intonation contours from punctuation tokens.
- OOV words: Unknown Devanagari words fall back to letter-by-letter rules. The 48 000-entry lexicon covers ~95% of common vocabulary.
- Numbers: Digits are read in Nepali word order; mixed Nepali/English numerals may produce unexpected output.
Citation
@misc{ampixa2026kala,
title = {Kala: CPU-native Nepali Text-to-Speech with a hand-crafted G2P},
author = {Ampixa},
year = {2026},
url = {https://huggingface.co/ampixa/real-nepali-v0.2-kala},
}Phonological foundation: Khatiwada (2009), Nepali, Journal of the International Phonetic Association, 39(3), 373–380.
License
Model weights and code: CC-BY-SA 4.0 Training corpus (OpenSLR-143, OpenSLR-43): CC-BY-SA 4.0 G2P lexicon seed (google/language-resources ne/): CC-BY 4.0
