RMSnow commited on
Commit
6e14f3c
1 Parent(s): 45569a2

vocalist contentvec and whisper as content features

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ result
vocalist_l1_contentvec+whisper/args.json ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_config": "config/diffusion.json",
3
+ "dataset": [
4
+ "vocalist_l1",
5
+ ],
6
+ "exp_name": "vocalist_l1_contentvec+whisper",
7
+ "inference": {
8
+ "diffusion": {
9
+ "scheduler": "pndm",
10
+ "scheduler_settings": {
11
+ "num_inference_timesteps": 1000,
12
+ },
13
+ },
14
+ },
15
+ "model": {
16
+ "condition_encoder": {
17
+ "content_encoder_dim": 384,
18
+ "contentvec_dim": 256,
19
+ "f0_max": 1100,
20
+ "f0_min": 50,
21
+ "input_loudness_dim": 1,
22
+ "input_melody_dim": 1,
23
+ "merge_mode": "add",
24
+ "mert_dim": 256,
25
+ "n_bins_loudness": 256,
26
+ "n_bins_melody": 256,
27
+ "output_content_dim": 384,
28
+ "output_loudness_dim": 384,
29
+ "output_melody_dim": 384,
30
+ "output_singer_dim": 384,
31
+ "pitch_max": 1100,
32
+ "pitch_min": 50,
33
+ "singer_table_size": 512,
34
+ "use_conformer_for_content_features": false,
35
+ "use_contentvec": true,
36
+ "use_log_f0": true,
37
+ "use_log_loudness": true,
38
+ "use_mert": false,
39
+ "use_singer_encoder": true,
40
+ "use_spkid": true,
41
+ "use_wenet": false,
42
+ "use_whisper": true,
43
+ "wenet_dim": 512,
44
+ "whisper_dim": 1024,
45
+ },
46
+ "diffusion": {
47
+ "bidilconv": {
48
+ "base_channel": 384,
49
+ "conditioner_size": 384,
50
+ "conv_kernel_size": 3,
51
+ "dilation_cycle_length": 4,
52
+ "n_res_block": 20,
53
+ },
54
+ "model_type": "bidilconv",
55
+ "scheduler": "ddpm",
56
+ "scheduler_settings": {
57
+ "beta_end": 0.02,
58
+ "beta_schedule": "linear",
59
+ "beta_start": 0.0001,
60
+ "num_train_timesteps": 1000,
61
+ },
62
+ "step_encoder": {
63
+ "activation": "SiLU",
64
+ "dim_hidden_layer": 512,
65
+ "dim_raw_embedding": 128,
66
+ "max_period": 10000,
67
+ "num_layer": 2,
68
+ },
69
+ "unet2d": {
70
+ "down_block_types": [
71
+ "CrossAttnDownBlock2D",
72
+ "CrossAttnDownBlock2D",
73
+ "CrossAttnDownBlock2D",
74
+ "DownBlock2D",
75
+ ],
76
+ "in_channels": 1,
77
+ "mid_block_type": "UNetMidBlock2DCrossAttn",
78
+ "only_cross_attention": false,
79
+ "out_channels": 1,
80
+ "up_block_types": [
81
+ "UpBlock2D",
82
+ "CrossAttnUpBlock2D",
83
+ "CrossAttnUpBlock2D",
84
+ "CrossAttnUpBlock2D",
85
+ ],
86
+ },
87
+ },
88
+ },
89
+ "model_type": "DiffWaveNetSVC",
90
+ "preprocess": {
91
+ "audio_dir": "audios",
92
+ "bits": 8,
93
+ "content_feature_batch_size": 16,
94
+ "contentvec_batch_size": 1,
95
+ "contentvec_dir": "contentvec",
96
+ "contentvec_file": "pretrained/contentvec/checkpoint_best_legacy_500.pt",
97
+ "contentvec_frameshift": 0.02,
98
+ "contentvec_sample_rate": 16000,
99
+ "dur_dir": "durs",
100
+ "duration_dir": "duration",
101
+ "emo2id": "emo2id.json",
102
+ "energy_dir": "energys",
103
+ "extract_audio": false,
104
+ "extract_contentvec_feature": true,
105
+ "extract_energy": true,
106
+ "extract_label": false,
107
+ "extract_mcep": false,
108
+ "extract_mel": true,
109
+ "extract_mert_feature": false,
110
+ "extract_pitch": true,
111
+ "extract_uv": true,
112
+ "extract_wenet_feature": false,
113
+ "extract_whisper_feature": true,
114
+ "f0_max": 1100,
115
+ "f0_min": 50,
116
+ "file_lst": "file.lst",
117
+ "fmax": 12000,
118
+ "fmin": 0,
119
+ "hop_size": 256,
120
+ "is_label": true,
121
+ "is_mu_law": true,
122
+ "lab_dir": "labs",
123
+ "label_dir": "labels",
124
+ "mcep_dir": "mcep",
125
+ "mel_dir": "mels",
126
+ "mel_min_max_norm": true,
127
+ "mel_min_max_stats_dir": "mel_min_max_stats",
128
+ "mert_dir": "mert",
129
+ "mert_feature_layer": -1,
130
+ "mert_frameshit": 0.01333,
131
+ "mert_hop_size": 320,
132
+ "mert_model": "m-a-p/MERT-v1-330M",
133
+ "min_level_db": -115,
134
+ "mu_law_norm": false,
135
+ "n_fft": 1024,
136
+ "n_mel": 100,
137
+ "num_silent_frames": 8,
138
+ "num_workers": 8,
139
+ "phone_seq_file": "phone_seq_file",
140
+ "pin_memory": true,
141
+ "pitch_bin": 256,
142
+ "pitch_dir": "pitches",
143
+ "pitch_extractor": "parselmouth",
144
+ "pitch_max": 1100.0,
145
+ "pitch_min": 50.0,
146
+ "processed_dir": "ckpts/svc/vocalist_l1_contentvec+whisper/data",
147
+ "ref_level_db": 20,
148
+ "sample_rate": 24000,
149
+ "spk2id": "singers.json",
150
+ "train_file": "train.json",
151
+ "trim_fft_size": 512,
152
+ "trim_hop_size": 128,
153
+ "trim_silence": false,
154
+ "trim_top_db": 30,
155
+ "trimmed_wav_dir": "trimmed_wavs",
156
+ "use_audio": false,
157
+ "use_contentvec": true,
158
+ "use_dur": false,
159
+ "use_emoid": false,
160
+ "use_frame_duration": false,
161
+ "use_frame_energy": true,
162
+ "use_frame_pitch": true,
163
+ "use_lab": false,
164
+ "use_label": false,
165
+ "use_log_scale_energy": false,
166
+ "use_log_scale_pitch": false,
167
+ "use_mel": true,
168
+ "use_mert": false,
169
+ "use_min_max_norm_mel": true,
170
+ "use_one_hot": false,
171
+ "use_phn_seq": false,
172
+ "use_phone_duration": false,
173
+ "use_phone_energy": false,
174
+ "use_phone_pitch": false,
175
+ "use_spkid": true,
176
+ "use_uv": true,
177
+ "use_wav": false,
178
+ "use_wenet": false,
179
+ "use_whisper": true,
180
+ "utt2emo": "utt2emo",
181
+ "utt2spk": "utt2singer",
182
+ "uv_dir": "uvs",
183
+ "valid_file": "test.json",
184
+ "wav_dir": "wavs",
185
+ "wenet_batch_size": 1,
186
+ "wenet_config": "pretrained/wenet/20220506_u2pp_conformer_exp/train.yaml",
187
+ "wenet_dir": "wenet",
188
+ "wenet_downsample_rate": 4,
189
+ "wenet_frameshift": 0.01,
190
+ "wenet_model_path": "pretrained/wenet/20220506_u2pp_conformer_exp/final.pt",
191
+ "wenet_sample_rate": 16000,
192
+ "whisper_batch_size": 30,
193
+ "whisper_dir": "whisper",
194
+ "whisper_downsample_rate": 2,
195
+ "whisper_frameshift": 0.01,
196
+ "whisper_model": "medium",
197
+ "whisper_model_path": "pretrained/whisper/medium.pt",
198
+ "win_size": 1024,
199
+ },
200
+ "supported_model_type": [
201
+ "Fastspeech2",
202
+ "DiffSVC",
203
+ "Transformer",
204
+ "EDM",
205
+ "CD",
206
+ ],
207
+ "train": {
208
+ "adamw": {
209
+ "lr": 0.0004,
210
+ },
211
+ "batch_size": 32,
212
+ "dataloader": {
213
+ "num_worker": 8,
214
+ "pin_memory": true,
215
+ },
216
+ "ddp": true,
217
+ "epochs": 50000,
218
+ "gradient_accumulation_step": 1,
219
+ "keep_checkpoint_max": 5,
220
+ "keep_last": [
221
+ 5,
222
+ -1,
223
+ ],
224
+ "max_epoch": -1,
225
+ "max_steps": 1000000,
226
+ "multi_speaker_training": false,
227
+ "optimizer": "AdamW",
228
+ "random_seed": 10086,
229
+ "reducelronplateau": {
230
+ "factor": 0.8,
231
+ "min_lr": 0.0001,
232
+ "patience": 10,
233
+ },
234
+ "run_eval": [
235
+ false,
236
+ true,
237
+ ],
238
+ "sampler": {
239
+ "drop_last": true,
240
+ "holistic_shuffle": false,
241
+ },
242
+ "save_checkpoint_stride": [
243
+ 3,
244
+ 10,
245
+ ],
246
+ "save_checkpoints_steps": 10000,
247
+ "save_summary_steps": 500,
248
+ "scheduler": "ReduceLROnPlateau",
249
+ "total_training_steps": 50000,
250
+ "tracker": [
251
+ "tensorboard",
252
+ ],
253
+ "valid_interval": 10000,
254
+ },
255
+ "use_custom_dataset": true,
256
+ }
vocalist_l1_contentvec+whisper/checkpoint/epoch-6852_step-0678447_loss-1.946773/ckpts.json ADDED
The diff for this file is too large to render. See raw diff
 
vocalist_l1_contentvec+whisper/checkpoint/epoch-6852_step-0678447_loss-1.946773/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:836af10b834c7aec9209eb19ce43559e6ef1e3a59bd6468e90cadbc9a18749ef
3
+ size 249512389
vocalist_l1_contentvec+whisper/checkpoint/epoch-6852_step-0678447_loss-1.946773/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d54eed12bef331095fc367f196d07c5061d5cb72dd6fe0e1e4453b997bf1d68d
3
+ size 124755137
vocalist_l1_contentvec+whisper/checkpoint/epoch-6852_step-0678447_loss-1.946773/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6798ddffadcd7d5405a77e667c674c474e4fef0cba817fdd300c7c985c1e82fe
3
+ size 14599
vocalist_l1_contentvec+whisper/data/vocalist_l1/mel_min_max_stats/mel_max.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04131849378aa4f525a701909f743c303f8d56571682572b888046ead9f3e2ab
3
+ size 528
vocalist_l1_contentvec+whisper/data/vocalist_l1/mel_min_max_stats/mel_min.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef4895ebef0e9949a6e623315bdc8a68490ba95d2f81b2be9f5146f904203016
3
+ size 528
vocalist_l1_contentvec+whisper/data/vocalist_l1/pitches/statistics.json ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocalist_l1_Adele": {
3
+ "voiced_positions": {
4
+ "mean": 336.5038018286193,
5
+ "std": 100.2148774476881,
6
+ "median": 332.98363792619296,
7
+ "min": 59.99838412340723,
8
+ "max": 1099.849325287837
9
+ },
10
+ "total_positions": {
11
+ "mean": 231.79366581704338,
12
+ "std": 176.6042850107386,
13
+ "median": 273.2844263775394,
14
+ "min": 0.0,
15
+ "max": 1099.849325287837
16
+ }
17
+ },
18
+ "vocalist_l1_Beyonce": {
19
+ "voiced_positions": {
20
+ "mean": 357.5678927636881,
21
+ "std": 130.1132620135807,
22
+ "median": 318.2981879228934,
23
+ "min": 70.29719673914867,
24
+ "max": 1050.354470112099
25
+ },
26
+ "total_positions": {
27
+ "mean": 267.5248026267327,
28
+ "std": 191.71600807951046,
29
+ "median": 261.91981963774066,
30
+ "min": 0.0,
31
+ "max": 1050.354470112099
32
+ }
33
+ },
34
+ "vocalist_l1_BrunoMars": {
35
+ "voiced_positions": {
36
+ "mean": 330.92612740814315,
37
+ "std": 86.51034158515388,
38
+ "median": 324.65585832605217,
39
+ "min": 58.74277302450286,
40
+ "max": 999.2818302992808
41
+ },
42
+ "total_positions": {
43
+ "mean": 237.26076288057826,
44
+ "std": 166.09898203490803,
45
+ "median": 286.3097386522132,
46
+ "min": 0.0,
47
+ "max": 999.2818302992808
48
+ }
49
+ },
50
+ "vocalist_l1_JohnMayer": {
51
+ "voiced_positions": {
52
+ "mean": 218.3531239166661,
53
+ "std": 77.89887175223768,
54
+ "median": 200.19060542586652,
55
+ "min": 53.371912740674716,
56
+ "max": 1098.1986774161685
57
+ },
58
+ "total_positions": {
59
+ "mean": 112.95331907131244,
60
+ "std": 122.65534824070893,
61
+ "median": 124.71389285965317,
62
+ "min": 0.0,
63
+ "max": 1098.1986774161685
64
+ }
65
+ },
66
+ "vocalist_l1_MichaelJackson": {
67
+ "voiced_positions": {
68
+ "mean": 293.4663654519906,
69
+ "std": 89.02211325650234,
70
+ "median": 284.4323483619402,
71
+ "min": 61.14507754070825,
72
+ "max": 1096.4247902272325
73
+ },
74
+ "total_positions": {
75
+ "mean": 172.1013565770682,
76
+ "std": 159.79551912957191,
77
+ "median": 212.82938711725973,
78
+ "min": 0.0,
79
+ "max": 1096.4247902272325
80
+ }
81
+ },
82
+ "vocalist_l1_TaylorSwift": {
83
+ "voiced_positions": {
84
+ "mean": 302.5346928039029,
85
+ "std": 87.1724728626562,
86
+ "median": 286.91670244246586,
87
+ "min": 51.31173137207717,
88
+ "max": 1098.9374311806605
89
+ },
90
+ "total_positions": {
91
+ "mean": 169.90968097339214,
92
+ "std": 163.7133164876362,
93
+ "median": 220.90943653386546,
94
+ "min": 0.0,
95
+ "max": 1098.9374311806605
96
+ }
97
+ },
98
+ "vocalist_l1_张学友": {
99
+ "voiced_positions": {
100
+ "mean": 233.6845479691867,
101
+ "std": 66.47140810463938,
102
+ "median": 228.28695118043396,
103
+ "min": 51.65338480121057,
104
+ "max": 1094.4381927885959
105
+ },
106
+ "total_positions": {
107
+ "mean": 167.79543637603194,
108
+ "std": 119.28338415844308,
109
+ "median": 194.81504136428546,
110
+ "min": 0.0,
111
+ "max": 1094.4381927885959
112
+ }
113
+ },
114
+ "vocalist_l1_李健": {
115
+ "voiced_positions": {
116
+ "mean": 234.98401896504657,
117
+ "std": 71.3955175177514,
118
+ "median": 221.86415264367847,
119
+ "min": 54.070687769392585,
120
+ "max": 1096.3342286660531
121
+ },
122
+ "total_positions": {
123
+ "mean": 148.74760079412246,
124
+ "std": 126.70486473504008,
125
+ "median": 180.21374566147688,
126
+ "min": 0.0,
127
+ "max": 1096.3342286660531
128
+ }
129
+ },
130
+ "vocalist_l1_汪峰": {
131
+ "voiced_positions": {
132
+ "mean": 284.27752567207864,
133
+ "std": 78.51774150654873,
134
+ "median": 278.26186808969493,
135
+ "min": 54.30945929095861,
136
+ "max": 1053.6870553733015
137
+ },
138
+ "total_positions": {
139
+ "mean": 172.41584497486713,
140
+ "std": 151.74272125914902,
141
+ "median": 216.27534661524862,
142
+ "min": 0.0,
143
+ "max": 1053.6870553733015
144
+ }
145
+ },
146
+ "vocalist_l1_王菲": {
147
+ "voiced_positions": {
148
+ "mean": 339.1661679865587,
149
+ "std": 86.86768172635271,
150
+ "median": 327.4151031268507,
151
+ "min": 51.21299842481366,
152
+ "max": 1096.7044574066776
153
+ },
154
+ "total_positions": {
155
+ "mean": 217.726880186,
156
+ "std": 176.8748978138034,
157
+ "median": 277.8608050501477,
158
+ "min": 0.0,
159
+ "max": 1096.7044574066776
160
+ }
161
+ },
162
+ "vocalist_l1_石倚洁": {
163
+ "voiced_positions": {
164
+ "mean": 279.67710779262256,
165
+ "std": 87.82306577322389,
166
+ "median": 271.13024912248443,
167
+ "min": 59.604772357481075,
168
+ "max": 1098.0574674417153
169
+ },
170
+ "total_positions": {
171
+ "mean": 205.49634806008135,
172
+ "std": 144.6064344590865,
173
+ "median": 234.19454400899718,
174
+ "min": 0.0,
175
+ "max": 1098.0574674417153
176
+ }
177
+ },
178
+ "vocalist_l1_蔡琴": {
179
+ "voiced_positions": {
180
+ "mean": 258.9105806499278,
181
+ "std": 67.4079737418162,
182
+ "median": 250.29778287949176,
183
+ "min": 54.81875790199644,
184
+ "max": 930.3733192171918
185
+ },
186
+ "total_positions": {
187
+ "mean": 197.64675891035662,
188
+ "std": 124.80889987119957,
189
+ "median": 228.14775033720753,
190
+ "min": 0.0,
191
+ "max": 930.3733192171918
192
+ }
193
+ },
194
+ "vocalist_l1_那英": {
195
+ "voiced_positions": {
196
+ "mean": 358.98655838013195,
197
+ "std": 91.30591323348871,
198
+ "median": 346.95185476261275,
199
+ "min": 71.62879029165369,
200
+ "max": 1085.4349856526985
201
+ },
202
+ "total_positions": {
203
+ "mean": 243.83317702162077,
204
+ "std": 183.68660712060583,
205
+ "median": 294.9745603259994,
206
+ "min": 0.0,
207
+ "max": 1085.4349856526985
208
+ }
209
+ },
210
+ "vocalist_l1_陈奕迅": {
211
+ "voiced_positions": {
212
+ "mean": 222.0124146654594,
213
+ "std": 68.65002654904572,
214
+ "median": 218.9200565540147,
215
+ "min": 50.48503062529368,
216
+ "max": 1084.6336454006018
217
+ },
218
+ "total_positions": {
219
+ "mean": 154.2275169157727,
220
+ "std": 117.16740631313343,
221
+ "median": 176.89315636838086,
222
+ "min": 0.0,
223
+ "max": 1084.6336454006018
224
+ }
225
+ },
226
+ "vocalist_l1_陶喆": {
227
+ "voiced_positions": {
228
+ "mean": 242.58206762395713,
229
+ "std": 69.61805791083957,
230
+ "median": 227.5222796096177,
231
+ "min": 50.44809060945403,
232
+ "max": 1098.4942623171203
233
+ },
234
+ "total_positions": {
235
+ "mean": 171.59040988406485,
236
+ "std": 124.93911390018495,
237
+ "median": 204.4328861811408,
238
+ "min": 0.0,
239
+ "max": 1098.4942623171203
240
+ }
241
+ }
242
+ }
vocalist_l1_contentvec+whisper/log/vocalist_l1_contentvec+whisper/events.out.tfevents.1696052302.mmnewyardnodesz63219.120.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7f490fd0c97876e24bfc44413365ded7ff5d22c1c79f0dac0b754f3b32df76f
3
+ size 88
vocalist_l1_contentvec+whisper/log/vocalist_l1_contentvec+whisper/events.out.tfevents.1696052302.mmnewyardnodesz63219.120.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e01bcf2fa621ba563b70568c18fe0742d0f48cafae83a6e8beb0bb6d1f6d146d
3
+ size 77413046
vocalist_l1_contentvec+whisper/singers.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocalist_l1_Adele": 0,
3
+ "vocalist_l1_Beyonce": 1,
4
+ "vocalist_l1_BrunoMars": 2,
5
+ "vocalist_l1_JohnMayer": 3,
6
+ "vocalist_l1_MichaelJackson": 4,
7
+ "vocalist_l1_TaylorSwift": 5,
8
+ "vocalist_l1_张学友": 6,
9
+ "vocalist_l1_李健": 7,
10
+ "vocalist_l1_汪峰": 8,
11
+ "vocalist_l1_王菲": 9,
12
+ "vocalist_l1_石倚洁": 10,
13
+ "vocalist_l1_蔡琴": 11,
14
+ "vocalist_l1_那英": 12,
15
+ "vocalist_l1_陈奕迅": 13,
16
+ "vocalist_l1_陶喆": 14
17
+ }