-
Notifications
You must be signed in to change notification settings - Fork 7
/
config_pghi.json
82 lines (82 loc) · 1.7 KB
/
config_pghi.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"input_training_wav_list": "/path/to/train_set",
"input_validation_wav_list": "/path/to/test_set",
"test_input_wavs_dir": "../../datasets/LJ_22050/LJ_test",
"test_input_mels_dir": "./",
"test_mel_load": 0,
"test_output_dir": "/path/to/output",
"batch_size": 64,
"learning_rate": 0.0004,
"adam_b1": 0.8,
"adam_b2": 0.99,
"lr_decay": 0.999,
"seed": 1234,
"training_epochs": 3100,
"stdout_interval": 20,
"checkpoint_interval": 5000,
"summary_interval": 100,
"validation_interval": 1000,
"checkpoint_path": "cp_APNet_revabs_pghi",
"checkpoint_file_load": "cp_APNet_revabs_pghi/g_01000000",
"ASP_channel": 513,
"ASP_resblock_kernel_sizes": [
3,
7,
11
],
"ASP_resblock_dilation_sizes": [
[
1,
3,
5
],
[
1,
3,
5
],
[
1,
3,
5
]
],
"ASP_input_conv_kernel_size": 7,
"ASP_output_conv_kernel_size": 7,
"PSP_channel": 513,
"PSP_resblock_kernel_sizes": [
3,
7,
11
],
"PSP_resblock_dilation_sizes": [
[
1,
3,
5
],
[
1,
3,
5
],
[
1,
3,
5
]
],
"PSP_input_conv_kernel_size": 7,
"PSP_output_R_conv_kernel_size": 7,
"PSP_output_I_conv_kernel_size": 7,
"segment_size": 8192,
"num_mels": 80,
"n_fft": 1024,
"hop_size": 256,
"win_size": 1024,
"sampling_rate": 22050,
"fmin": 0,
"fmax": 8000,
"meloss": null,
"num_workers": 4
}