OOPPEENN commited on
Commit
5cb9115
1 Parent(s): e589e39

Upload 4 files

Browse files
so-vits-svc/SR_CN_1.2/config.json ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train": {
3
+ "log_interval": 100,
4
+ "eval_interval": 1000,
5
+ "seed": 1234,
6
+ "epochs": 10000,
7
+ "learning_rate": 0.0004,
8
+ "betas": [
9
+ 0.8,
10
+ 0.99
11
+ ],
12
+ "eps": 1e-09,
13
+ "batch_size": 48,
14
+ "fp16_run": true,
15
+ "half_type": "bf16",
16
+ "lr_decay": 0.997,
17
+ "segment_size": 10240,
18
+ "init_lr_ratio": 1,
19
+ "warmup_epochs": 0,
20
+ "c_mel": 45,
21
+ "c_kl": 1.0,
22
+ "use_sr": true,
23
+ "max_speclen": 512,
24
+ "port": "8001",
25
+ "keep_ckpts": 20,
26
+ "all_in_mem": false,
27
+ "vol_aug": true
28
+ },
29
+ "data": {
30
+ "training_files": "filelists/train.txt",
31
+ "validation_files": "filelists/val.txt",
32
+ "max_wav_value": 32768.0,
33
+ "sampling_rate": 44100,
34
+ "filter_length": 2048,
35
+ "hop_length": 512,
36
+ "win_length": 2048,
37
+ "n_mel_channels": 80,
38
+ "mel_fmin": 0.0,
39
+ "mel_fmax": 22050,
40
+ "unit_interpolate_mode": "nearest"
41
+ },
42
+ "model": {
43
+ "inter_channels": 192,
44
+ "hidden_channels": 192,
45
+ "filter_channels": 768,
46
+ "n_heads": 2,
47
+ "n_layers": 6,
48
+ "kernel_size": 3,
49
+ "p_dropout": 0.1,
50
+ "resblock": "1",
51
+ "resblock_kernel_sizes": [
52
+ 3,
53
+ 7,
54
+ 11
55
+ ],
56
+ "resblock_dilation_sizes": [
57
+ [
58
+ 1,
59
+ 3,
60
+ 5
61
+ ],
62
+ [
63
+ 1,
64
+ 3,
65
+ 5
66
+ ],
67
+ [
68
+ 1,
69
+ 3,
70
+ 5
71
+ ]
72
+ ],
73
+ "upsample_rates": [
74
+ 8,
75
+ 8,
76
+ 2,
77
+ 2,
78
+ 2
79
+ ],
80
+ "upsample_initial_channel": 512,
81
+ "upsample_kernel_sizes": [
82
+ 16,
83
+ 16,
84
+ 4,
85
+ 4,
86
+ 4
87
+ ],
88
+ "n_layers_q": 3,
89
+ "n_layers_trans_flow": 3,
90
+ "n_flow_layer": 4,
91
+ "use_spectral_norm": false,
92
+ "gin_channels": 768,
93
+ "ssl_dim": 768,
94
+ "n_speakers": 32,
95
+ "vocoder_name": "nsf-hifigan",
96
+ "speech_encoder": "vec768l12",
97
+ "speaker_embedding": false,
98
+ "vol_embedding": true,
99
+ "use_depthwise_conv": false,
100
+ "flow_share_parameter": false,
101
+ "use_automatic_f0_prediction": true,
102
+ "use_transformer_flow": false
103
+ },
104
+ "spk": {
105
+ "Arlan": 0,
106
+ "Clara": 1,
107
+ "Danheng": 2,
108
+ "Natasha": 3,
109
+ "Serval": 4,
110
+ "Bronya": 5,
111
+ "Playergirl": 6,
112
+ "Seele": 7,
113
+ "Hook": 8,
114
+ "Kafka": 9,
115
+ "Sushang": 10,
116
+ "Fuxuan": 11,
117
+ "Pela": 12,
118
+ "Herta": 13,
119
+ "Himeko": 14,
120
+ "Jingliu": 15,
121
+ "Jingyuan": 16,
122
+ "Luocha": 17,
123
+ "Tingyun": 18,
124
+ "Yukong": 19,
125
+ "Asta": 20,
126
+ "Bailu": 21,
127
+ "Silverwolf": 22,
128
+ "Yanqing": 23,
129
+ "Gepard": 24,
130
+ "Sampo": 25,
131
+ "Svarog": 26,
132
+ "Blade": 27,
133
+ "Mar7th": 28,
134
+ "Playerboy": 29,
135
+ "Qingque": 30,
136
+ "Welt": 31
137
+ }
138
+ }
so-vits-svc/SR_CN_1.2/config.yaml ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ data:
2
+ block_size: 512
3
+ cnhubertsoft_gate: 10
4
+ duration: 1
5
+ encoder: vec768l12
6
+ encoder_hop_size: 320
7
+ encoder_out_channels: 768
8
+ encoder_sample_rate: 16000
9
+ extensions:
10
+ - wav
11
+ sampling_rate: 44100
12
+ training_files: filelists/train.txt
13
+ unit_interpolate_mode: nearest
14
+ validation_files: filelists/val.txt
15
+ device: cuda
16
+ env:
17
+ expdir: logs/44k/diffusion
18
+ gpu_id: 0
19
+ infer:
20
+ method: dpm-solver++
21
+ speedup: 10
22
+ model:
23
+ k_step_max: 200
24
+ n_chans: 512
25
+ n_hidden: 256
26
+ n_layers: 20
27
+ n_spk: 32
28
+ timesteps: 1000
29
+ type: Diffusion
30
+ use_pitch_aug: true
31
+ spk:
32
+ Arlan: 0
33
+ Asta: 20
34
+ Bailu: 21
35
+ Blade: 27
36
+ Bronya: 5
37
+ Clara: 1
38
+ Danheng: 2
39
+ Fuxuan: 11
40
+ Gepard: 24
41
+ Herta: 13
42
+ Himeko: 14
43
+ Hook: 8
44
+ Jingliu: 15
45
+ Jingyuan: 16
46
+ Kafka: 9
47
+ Luocha: 17
48
+ Mar7th: 28
49
+ Natasha: 3
50
+ Pela: 12
51
+ Playerboy: 29
52
+ Playergirl: 6
53
+ Qingque: 30
54
+ Sampo: 25
55
+ Seele: 7
56
+ Serval: 4
57
+ Silverwolf: 22
58
+ Sushang: 10
59
+ Svarog: 26
60
+ Tingyun: 18
61
+ Welt: 31
62
+ Yanqing: 23
63
+ Yukong: 19
64
+ train:
65
+ amp_dtype: bf16
66
+ batch_size: 48
67
+ cache_all_data: true
68
+ cache_device: cpu
69
+ cache_fp16: true
70
+ decay_step: 100000
71
+ epochs: 100000
72
+ gamma: 0.5
73
+ interval_force_save: 5000
74
+ interval_log: 100
75
+ interval_val: 5000
76
+ lr: 0.00016
77
+ num_workers: 6
78
+ save_opt: false
79
+ weight_decay: 0
80
+ vocoder:
81
+ ckpt: pretrain/nsf_hifigan/model
82
+ type: nsf-hifigan
so-vits-svc/SR_CN_1.2/model_20000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b894f2a05a7142d40b9c5d6a4455496204706da548102f58ba2be70a65ba7bdd
3
+ size 220926857
so-vits-svc/SR_CN_1.2/out.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f2fca0497e25627254499eba66fc3b708f9a509f23fcc16b754ac70b8de4b17
3
+ size 160989501