vspeech commited on
Commit
7689aa9
·
verified ·
1 Parent(s): 33577b7

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +50 -0
config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "F0_path": "Utils/JDC/bst.t7",
3
+
4
+ "resblock": "1",
5
+ "num_gpus": 1,
6
+ "batch_size": 16,
7
+ "learning_rate": 0.0002,
8
+ "adam_b1": 0.8,
9
+ "adam_b2": 0.99,
10
+ "lr_decay": 0.999,
11
+ "grad_clip": 1000,
12
+ "seed": 1234,
13
+
14
+ "upsample_rates": [8,8],
15
+ "upsample_kernel_sizes": [16,16],
16
+ "upsample_initial_channel": 512,
17
+ "resblock_kernel_sizes": [3,7,11],
18
+ "resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
19
+ "gen_istft_n_fft": 16,
20
+ "gen_istft_hop_size": 4,
21
+ "audio_limit": 0.99,
22
+
23
+ "segment_size": 24576,
24
+ "num_mels": 100,
25
+ "n_fft": 1024,
26
+ "hop_size": 256,
27
+ "win_size": 1024,
28
+
29
+ "proj_channels": 256,
30
+ "inter_dim": 768,
31
+ "num_layers": 4,
32
+ "har_istft_n_fft": 256,
33
+ "har_istft_hop_size": 64,
34
+ "har_sampling_rate": 6000,
35
+ "har_num_mels": 20,
36
+
37
+ "sampling_rate": 24000,
38
+
39
+ "fmin": 0,
40
+ "fmax": 12000,
41
+ "fmax_for_loss": null,
42
+
43
+ "num_workers": 4,
44
+
45
+ "dist_config": {
46
+ "dist_backend": "nccl",
47
+ "dist_url": "tcp://localhost:54321",
48
+ "world_size": 1
49
+ }
50
+ }