Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-speech
|
| 4 |
+
language:
|
| 5 |
+
- it
|
| 6 |
+
model-index:
|
| 7 |
+
- name: vits-female-it
|
| 8 |
+
results: []
|
| 9 |
+
datasets:
|
| 10 |
+
- z-uo/female-LJSpeech-italian
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Coqui Model for TTS
|
| 14 |
+
```
|
| 15 |
+
pip install TTS
|
| 16 |
+
git clone https://huggingface.co/z-uo/vits-female-it
|
| 17 |
+
# predict one
|
| 18 |
+
tts --text "ciao pluto" --model_path "vits-female-it/best_model.pth.tar" --config_path "vits-female-it/config.json"
|
| 19 |
+
# predict server
|
| 20 |
+
tts-server --model_path "vits-female-it/best_model.pth.tar" --config_path "vits-female-it/config.json"
|
| 21 |
+
firefox localhost:5002
|
| 22 |
+
```
|
| 23 |
+
More information about training script in [this repo](https://github.com/nicolalandro/train_coqui_tts_ita).
|