diff --git a/examples/clarinet/configs/clarinet_ljspeech.yaml b/examples/clarinet/configs/clarinet_ljspeech.yaml index 7ceedcc..2e571e5 100644 --- a/examples/clarinet/configs/clarinet_ljspeech.yaml +++ b/examples/clarinet/configs/clarinet_ljspeech.yaml @@ -1,5 +1,5 @@ data: - batch_size: 4 + batch_size: 8 train_clip_seconds: 0.5 sample_rate: 22050 hop_length: 256 diff --git a/examples/deepvoice3/README.md b/examples/deepvoice3/README.md index 0138414..64fc0ae 100644 --- a/examples/deepvoice3/README.md +++ b/examples/deepvoice3/README.md @@ -23,7 +23,7 @@ The model consists of an encoder, a decoder and a converter (and a speaker embed ```text ├── data.py data_processing -├── ljspeech.yaml (example) configuration file +├── configs/ (example) configuration files ├── sentences.txt sample sentences ├── synthesis.py script to synthesize waveform from text ├── train.py script to train a model @@ -72,7 +72,7 @@ optional arguments: example script: ```bash -python train.py --config=./ljspeech.yaml --data=./LJSpeech-1.1/ --output=experiment --device=0 +python train.py --config=configs/ljspeech.yaml --data=./LJSpeech-1.1/ --output=experiment --device=0 ``` You can monitor training log via tensorboard, using the script below. @@ -110,5 +110,5 @@ optional arguments: example script: ```bash -python synthesis.py --config=./ljspeech.yaml --device=0 experiment/checkpoints/model_step_005000000 sentences.txt generated +python synthesis.py --config=configs/ljspeech.yaml --device=0 experiment/checkpoints/model_step_005000000 sentences.txt generated ``` diff --git a/examples/deepvoice3/ljspeech.yaml b/examples/deepvoice3/configs/ljspeech.yaml similarity index 100% rename from examples/deepvoice3/ljspeech.yaml rename to examples/deepvoice3/configs/ljspeech.yaml diff --git a/examples/wavenet/configs/wavenet_mixture_of_gaussians.yaml b/examples/wavenet/configs/wavenet_mixture_of_gaussians.yaml index a848a52..8aeb8db 100644 --- a/examples/wavenet/configs/wavenet_mixture_of_gaussians.yaml +++ b/examples/wavenet/configs/wavenet_mixture_of_gaussians.yaml @@ -30,7 +30,7 @@ train: snap_interval: 10000 eval_interval: 10000 - max_iterations: 200000 + max_iterations: 2000000 diff --git a/examples/wavenet/configs/wavenet_single_gaussian.yaml b/examples/wavenet/configs/wavenet_single_gaussian.yaml index 8e33349..cd8fd22 100644 --- a/examples/wavenet/configs/wavenet_single_gaussian.yaml +++ b/examples/wavenet/configs/wavenet_single_gaussian.yaml @@ -1,5 +1,5 @@ data: - batch_size: 4 + batch_size: 32 train_clip_seconds: 0.5 sample_rate: 22050 hop_length: 256 @@ -30,7 +30,7 @@ train: snap_interval: 10000 eval_interval: 10000 - max_iterations: 200000 + max_iterations: 2000000 diff --git a/examples/wavenet/configs/wavenet_softmax.yaml b/examples/wavenet/configs/wavenet_softmax.yaml index 98018ee..2199c9b 100644 --- a/examples/wavenet/configs/wavenet_softmax.yaml +++ b/examples/wavenet/configs/wavenet_softmax.yaml @@ -30,7 +30,7 @@ train: snap_interval: 10000 eval_interval: 10000 - max_iterations: 200000 + max_iterations: 2000000