-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.json
50 lines (39 loc) · 980 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"resblock": "1",
"num_gpus": 1,
"batch_size": 32,
"learning_rate": 0.0002,
"adam_b1": 0.5,
"adam_b2": 0.9,
"lr_decay": 0.98,
"seed": 1234,
"upsample_rates": [8,5,3,2],
"upsample_kernel_sizes": [16,11,7,4],
"upsample_initial_channel": 512,
"resblock_kernel_sizes": [3,7,11],
"resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
"segment_size": 12000,
"num_mels": 80,
"num_freq": 1025,
"n_fft": 1024,
"hop_size": 240,
"win_size": 1024,
"sampling_rate": 24000,
"Audio": {"n_code_groups": 1,
"residul_layer":8,
"infer_need_layer":8,
"n_codes": 1024,
"codebook_weight": 512,
"codebook_loss_lambda": 1.0,
"commitment_loss_lambda": 0.25
},
"fmin": 0,
"fmax": 8000,
"fmax_for_loss": null,
"num_workers": 12,
"dist_config": {
"dist_backend": "nccl",
"dist_url": "tcp://localhost:54321",
"world_size": 1
}
}