Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -16,4 +16,34 @@ license: cc-by-4.0
|
|
| 16 |
|
| 17 |
LJSpeech dataset of Wheatley (en).
|
| 18 |
- **827** pairs
|
| 19 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
LJSpeech dataset of Wheatley (en).
|
| 18 |
- **827** pairs
|
| 19 |
+
- 44.1kHz mono 16-bit PCM WAV (original wiki quality)
|
| 20 |
+
|
| 21 |
+
## Piper TTS Training (High Quality on T4 GPU)
|
| 22 |
+
|
| 23 |
+
### Preprocessing (downsample to 22.05kHz)
|
| 24 |
+
```sh
|
| 25 |
+
python3 -m piper_train.preprocess \
|
| 26 |
+
--language en-us \
|
| 27 |
+
--input-dir ./wheatley_en \
|
| 28 |
+
--output-dir ./train_wheatley_en \
|
| 29 |
+
--dataset-format ljspeech \
|
| 30 |
+
--single-speaker \
|
| 31 |
+
--sample-rate 22050
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
### Training (Kaggle T4 16GB)
|
| 35 |
+
```sh
|
| 36 |
+
python3 -m piper_train \
|
| 37 |
+
--dataset-dir ./train_wheatley_en \
|
| 38 |
+
--accelerator 'gpu' \
|
| 39 |
+
--devices 1 \
|
| 40 |
+
--quality high \
|
| 41 |
+
--batch-size 16 \
|
| 42 |
+
--validation-split 0.0 \
|
| 43 |
+
--num-test-examples 0 \
|
| 44 |
+
--max_epochs 10000 \
|
| 45 |
+
--resume_from_checkpoint /path/to/checkpoint.ckpt \
|
| 46 |
+
--checkpoint-epochs 1 \
|
| 47 |
+
--precision 32 \
|
| 48 |
+
--max-phoneme-ids 400
|
| 49 |
+
```
|