File size: 978 Bytes
3034e71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
db4d659
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
configs:
- config_name: default
  data_files:
  - split: train
    path: data.zip
tags:
- audio
- voice
- portal
- piper-tts
- ljspeech
license: cc-by-4.0
---
# Wheatley — English (en)

LJSpeech dataset of Wheatley (en).
- **827** pairs
- 44.1kHz mono 16-bit PCM WAV (original wiki quality)

## Piper TTS Training (High Quality on T4 GPU)

### Preprocessing (downsample to 22.05kHz)
```sh
python3 -m piper_train.preprocess \
  --language en-us \
  --input-dir ./wheatley_en \
  --output-dir ./train_wheatley_en \
  --dataset-format ljspeech \
  --single-speaker \
  --sample-rate 22050
```

### Training (Kaggle T4 16GB)
```sh
python3 -m piper_train \
  --dataset-dir ./train_wheatley_en \
  --accelerator 'gpu' \
  --devices 1 \
  --quality high \
  --batch-size 16 \
  --validation-split 0.0 \
  --num-test-examples 0 \
  --max_epochs 10000 \
  --resume_from_checkpoint /path/to/checkpoint.ckpt \
  --checkpoint-epochs 1 \
  --precision 32 \
  --max-phoneme-ids 400
```