ljuvela commited on
Commit
fd33d39
·
1 Parent(s): 22163a8

added configs

Browse files
Files changed (2) hide show
  1. config_feature_map.json +24 -0
  2. config_hifigan.json +39 -0
config_feature_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "WaveNet",
3
+ "n_feat": 9,
4
+ "n_out": 111,
5
+ "batch_size": 256,
6
+ "pre_train_steps": 10000,
7
+ "res_channels": 256,
8
+ "skip_channels": 256,
9
+ "kernel_size": 5,
10
+ "dilations": [
11
+ 1,
12
+ 1,
13
+ 1,
14
+ 1,
15
+ 1,
16
+ 1,
17
+ 1,
18
+ 1
19
+ ],
20
+ "causal": false,
21
+ "envelope_loss_l1_weight": 1.0,
22
+ "envelope_loss_l2_weight": 0.0,
23
+ "envelope_loss_log_domain": true
24
+ }
config_hifigan.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "resblock": "1",
3
+ "num_gpus": 0,
4
+ "batch_size": 16,
5
+ "learning_rate": 0.00002,
6
+ "adam_b1": 0.9,
7
+ "adam_b2": 0.99,
8
+ "lr_decay": 0.999,
9
+ "seed": 1234,
10
+
11
+ "upsample_rates": [8,8,2,2],
12
+ "upsample_kernel_sizes": [16,16,4,4],
13
+ "upsample_initial_channel": 512,
14
+ "resblock_kernel_sizes": [3,7,11],
15
+ "resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
16
+
17
+ "segment_size": 8192,
18
+ "num_mels": 80,
19
+ "num_freq": 1025,
20
+ "n_fft": 1024,
21
+ "hop_size": 256,
22
+ "win_size": 1024,
23
+ "allpole_order": 30,
24
+ "pre_emph_coeff": 0.97,
25
+
26
+ "sampling_rate": 22050,
27
+
28
+ "fmin": 0,
29
+ "fmax": 8000,
30
+ "fmax_for_loss": null,
31
+
32
+ "num_workers": 4,
33
+
34
+ "dist_config": {
35
+ "dist_backend": "nccl",
36
+ "dist_url": "tcp://localhost:54321",
37
+ "world_size": 1
38
+ }
39
+ }