unilight commited on
Commit
b0d8977
·
1 Parent(s): 0423912

Upload pwg_bdl/config.yml with huggingface_hub

Browse files
Files changed (1) hide show
  1. pwg_bdl/config.yml +98 -0
pwg_bdl/config.yml ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ allow_cache: true
2
+ batch_max_steps: 15360
3
+ batch_size: 10
4
+ config: conf/parallel_wavegan.v1.yaml
5
+ dev_dumpdir: dump/dev_bdl/norm
6
+ discriminator_grad_norm: 1
7
+ discriminator_optimizer_params:
8
+ eps: 1.0e-06
9
+ lr: 5.0e-05
10
+ weight_decay: 0.0
11
+ discriminator_params:
12
+ bias: true
13
+ conv_channels: 64
14
+ in_channels: 1
15
+ kernel_size: 3
16
+ layers: 10
17
+ nonlinear_activation: LeakyReLU
18
+ nonlinear_activation_params:
19
+ negative_slope: 0.2
20
+ out_channels: 1
21
+ use_weight_norm: true
22
+ discriminator_scheduler_params:
23
+ gamma: 0.5
24
+ step_size: 200000
25
+ discriminator_train_start_steps: 100000
26
+ distributed: true
27
+ eval_interval_steps: 1000
28
+ fft_size: 1024
29
+ fmax: 7600
30
+ fmin: 80
31
+ format: hdf5
32
+ generator_grad_norm: 10
33
+ generator_optimizer_params:
34
+ eps: 1.0e-06
35
+ lr: 0.0001
36
+ weight_decay: 0.0
37
+ generator_params:
38
+ aux_channels: 80
39
+ aux_context_window: 2
40
+ dropout: 0.0
41
+ gate_channels: 128
42
+ in_channels: 1
43
+ kernel_size: 3
44
+ layers: 30
45
+ out_channels: 1
46
+ residual_channels: 64
47
+ skip_channels: 64
48
+ stacks: 3
49
+ upsample_net: ConvInUpsampleNetwork
50
+ upsample_params:
51
+ upsample_scales:
52
+ - 4
53
+ - 4
54
+ - 4
55
+ - 4
56
+ use_weight_norm: true
57
+ generator_scheduler_params:
58
+ gamma: 0.5
59
+ step_size: 200000
60
+ global_gain_scale: 1.0
61
+ hop_size: 256
62
+ lambda_adv: 4.0
63
+ log_interval_steps: 100
64
+ num_mels: 80
65
+ num_save_intermediate_results: 4
66
+ num_workers: 2
67
+ outdir: exp/train_nodev_bdl_arctic_parallel_wavegan.v1
68
+ pin_memory: true
69
+ rank: 1
70
+ remove_short_samples: true
71
+ resume: ''
72
+ sampling_rate: 16000
73
+ save_interval_steps: 5000
74
+ stft_loss_params:
75
+ fft_sizes:
76
+ - 1024
77
+ - 2048
78
+ - 512
79
+ hop_sizes:
80
+ - 120
81
+ - 240
82
+ - 50
83
+ win_lengths:
84
+ - 600
85
+ - 1200
86
+ - 240
87
+ window: hann_window
88
+ train_dumpdir: dump/train_nodev_bdl/norm
89
+ train_max_steps: 400000
90
+ trim_frame_size: 2048
91
+ trim_hop_size: 512
92
+ trim_silence: false
93
+ trim_threshold_in_db: 60
94
+ verbose: 1
95
+ version: 0.2.5.post2
96
+ win_length: null
97
+ window: hann
98
+ world_size: 2