Add config/everyvoice-spec-to-wav.yaml for Gofa
Browse files
config/everyvoice-spec-to-wav.yaml
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
VERSION: '1.0'
|
| 2 |
+
contact: {contact_email: david.guzman@mail.mcgill.ca, contact_name: David Guzman}
|
| 3 |
+
model:
|
| 4 |
+
activation_function: everyvoice.utils.original_hifigan_leaky_relu
|
| 5 |
+
istft_layer: false
|
| 6 |
+
mpd_layers: [2, 3, 5, 7, 11]
|
| 7 |
+
msd_layers: 3
|
| 8 |
+
resblock: '1'
|
| 9 |
+
resblock_dilation_sizes:
|
| 10 |
+
- [1, 3, 5]
|
| 11 |
+
- [1, 3, 5]
|
| 12 |
+
- [1, 3, 5]
|
| 13 |
+
resblock_kernel_sizes: [3, 7, 11]
|
| 14 |
+
upsample_initial_channel: 512
|
| 15 |
+
upsample_kernel_sizes: [16, 16, 4, 4]
|
| 16 |
+
upsample_rates: [8, 8, 2, 2]
|
| 17 |
+
path_to_model_config_file: null
|
| 18 |
+
path_to_preprocessing_config_file: everyvoice-shared-data.yaml
|
| 19 |
+
path_to_training_config_file: null
|
| 20 |
+
training:
|
| 21 |
+
batch_size: 16
|
| 22 |
+
check_val_every_n_epoch: null
|
| 23 |
+
ckpt_epochs: 1
|
| 24 |
+
ckpt_steps: null
|
| 25 |
+
filelist_loader: everyvoice.utils.generic_dict_loader
|
| 26 |
+
finetune: false
|
| 27 |
+
finetune_checkpoint: null
|
| 28 |
+
gan_type: original
|
| 29 |
+
generator_warmup_steps: 0
|
| 30 |
+
logger: {name: VocoderExperiment, save_dir: ../logs_and_checkpoints, sub_dir_callable: everyvoice.utils.get_current_time,
|
| 31 |
+
version: base}
|
| 32 |
+
max_epochs: 1000
|
| 33 |
+
max_steps: 100000
|
| 34 |
+
optimizer:
|
| 35 |
+
betas: [0.9, 0.98]
|
| 36 |
+
eps: 1.0e-08
|
| 37 |
+
learning_rate: 0.0001
|
| 38 |
+
name: adamw
|
| 39 |
+
weight_decay: 0.01
|
| 40 |
+
save_top_k_ckpts: 5
|
| 41 |
+
train_data_workers: 4
|
| 42 |
+
training_filelist: ../preprocessed/training_filelist.psv
|
| 43 |
+
use_weighted_sampler: false
|
| 44 |
+
val_check_interval: 500
|
| 45 |
+
val_data_workers: 0
|
| 46 |
+
validation_filelist: ../preprocessed/validation_filelist.psv
|
| 47 |
+
wgan_clip_value: 0.01
|