khmer-tts / UPLOAD.md
khmerttsopensource's picture
Add Khmer TTS model release
c9380a9 verified
# Upload To Hugging Face
Install and authenticate the Hugging Face CLI:
```bash
curl -LsSf https://hf.co/cli/install.sh | bash -s
hf auth login
```
Upload this folder as a model repository:
```bash
cd huggingface/khmer-tts
hf upload khmerttsopensource/khmer-tts . .
```
For a private first upload:
```bash
hf upload khmerttsopensource/khmer-tts . . --private
```
After upload, test loading from the Hub:
```bash
python examples/inference.py \
--model khmerttsopensource/khmer-tts \
--text "សួស្តីអ្នកទាំងអស់គ្នា" \
--output khmer_tts.wav
```