Pj12 commited on
Commit
03505fc
·
verified ·
1 Parent(s): d0ba0ee

Update Model.py

Browse files
Files changed (1) hide show
  1. Model.py +541 -385
Model.py CHANGED
@@ -1,386 +1,542 @@
1
- models = {
2
- 'VOCALS-InstVocHQ':
3
- [
4
- 'mdx23c',
5
- 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_vocals_mdx23c.yaml',
6
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.0/model_vocals_mdx23c_sdr_10.17.ckpt',
7
- ],
8
- 'VOCALS-MelBand-Roformer (by KimberleyJSN)':
9
- [
10
- 'mel_band_roformer',
11
- 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/KimberleyJensen/config_vocals_mel_band_roformer_kj.yaml',
12
- 'https://huggingface.co/KimberleyJSN/melbandroformer/resolve/main/MelBandRoformer.ckpt',
13
- ],
14
- 'melband_roformer_big_beta4 (by unwa)':
15
- [
16
- 'mel_band_roformer',
17
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/config_melbandroformer_big_beta4.yaml',
18
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/melband_roformer_big_beta4.ckpt',
19
- ],
20
- 'big_beta5e (by unwa)':
21
- [
22
- 'mel_band_roformer',
23
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/big_beta5e.yaml',
24
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/big_beta5e.ckpt',
25
- ],
26
- 'big_beta6 (by unwa)':
27
- [
28
- 'mel_band_roformer',
29
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/big_beta6.yaml',
30
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/big_beta6.ckpt',
31
- ],
32
- 'kimmel_unwa_ft (by unwa)':
33
- [
34
- 'mel_band_roformer',
35
- 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/config_kimmel_unwa_ft.yaml',
36
- 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/kimmel_unwa_ft.ckpt',
37
- ],
38
- 'kimmel_unwa_ft2 (by unwa)':
39
- [
40
- 'mel_band_roformer',
41
- 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/config_kimmel_unwa_ft.yaml',
42
- 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/kimmel_unwa_ft2.ckpt',
43
- ],
44
- 'kimmel_unwa_ft2_bleedless (by unwa)':
45
- [
46
- 'mel_band_roformer',
47
- 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/config_kimmel_unwa_ft.yaml',
48
- 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/kimmel_unwa_ft2_bleedless.ckpt',
49
- ],
50
- 'mel_band_roformer_vocals_becruily':
51
- [
52
- 'mel_band_roformer',
53
- 'https://huggingface.co/becruily/mel-band-roformer-vocals/resolve/main/config_vocals_becruily.yaml',
54
- 'https://huggingface.co/becruily/mel-band-roformer-vocals/resolve/main/mel_band_roformer_vocals_becruily.ckpt',
55
- ],
56
- 'mel_band_roformer_instrumental_becruily':
57
- [
58
- 'mel_band_roformer',
59
- 'https://huggingface.co/becruily/mel-band-roformer-instrumental/resolve/main/config_instrumental_becruily.yaml',
60
- 'https://huggingface.co/becruily/mel-band-roformer-instrumental/resolve/main/mel_band_roformer_instrumental_becruily.ckpt',
61
- ],
62
- 'voc_gaboxFv1':
63
- [
64
- 'mel_band_roformer',
65
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gabox.yaml',
66
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gaboxFv1.ckpt',
67
- ],
68
- 'voc_gaboxFv2':
69
- [
70
- 'mel_band_roformer',
71
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gabox.yaml',
72
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gaboxFv2.ckpt',
73
- ],
74
- 'voc_Fv3':
75
- [
76
- 'mel_band_roformer',
77
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gabox.yaml',
78
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_Fv3.ckpt',
79
- ],
80
- 'voc_fv4':
81
- [
82
- 'mel_band_roformer',
83
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gabox.yaml',
84
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_fv4.ckpt',
85
- ],
86
- 'KaraokeGabox':
87
- [
88
- 'mel_band_roformer',
89
- 'https://huggingface.co/jarredou/aufr33-viperx-karaoke-melroformer-model/resolve/main/config_mel_band_roformer_karaoke.yaml',
90
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/experimental/KaraokeGabox.ckpt',
91
- ],
92
- 'inst_gaboxBv2':
93
- [
94
- 'mel_band_roformer',
95
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
96
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gaboxBv2.ckpt',
97
- ],
98
- 'inst_gaboxFv3':
99
- [
100
- 'mel_band_roformer',
101
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
102
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gaboxFv3.ckpt',
103
- ],
104
- 'inst_gabox3':
105
- [
106
- 'mel_band_roformer',
107
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
108
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox3.ckpt',
109
- ],
110
- 'INSTV6':
111
- [
112
- 'mel_band_roformer',
113
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
114
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/INSTV6.ckpt',
115
- ],
116
- 'Inst_GaboxV7':
117
- [
118
- 'mel_band_roformer',
119
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
120
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/Inst_GaboxV7.ckpt',
121
- ],
122
- 'denoisedebleed':
123
- [
124
- 'mel_band_roformer',
125
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
126
- 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/denoisedebleed.ckpt',
127
- ],
128
- 'melband_roformer_inst_v1 (by unwa)':
129
- [
130
- 'mel_band_roformer',
131
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/config_melbandroformer_inst.yaml',
132
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/melband_roformer_inst_v1.ckpt',
133
- ],
134
- 'melband_roformer_inst_v2 (by unwa)':
135
- [
136
- 'mel_band_roformer',
137
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/config_melbandroformer_inst_v2.yaml',
138
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/melband_roformer_inst_v2.ckpt',
139
- ],
140
- 'inst_v1e (by unwa)':
141
- [
142
- 'mel_band_roformer',
143
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/config_melbandroformer_inst.yaml',
144
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/inst_v1e.ckpt',
145
- ],
146
- 'BS_Inst_EXP_VRL (by unwa)':
147
- [
148
- 'bs_roformer',
149
- 'https://huggingface.co/pcunwa/BS-Roformer-Inst-EXP-Value-Residual/resolve/main/BS_Inst_EXP_VRL.yaml',
150
- 'https://huggingface.co/pcunwa/BS-Roformer-Inst-EXP-Value-Residual/resolve/main/BS_Inst_EXP_VRL.ckpt',
151
- ],
152
- 'bleed_suppressor_v1 (by unwa)':
153
- [
154
- 'mel_band_roformer',
155
- 'https://huggingface.co/listra92/MyModels/resolve/main/misc/config_bleed_suppressor_v1.yaml',
156
- 'https://huggingface.co/listra92/MyModels/resolve/main/misc/bleed_suppressor_v1.ckpt',
157
- ],
158
- 'melband_roformer_instvoc_duality_v1 (by unwa)':
159
- [
160
- 'mel_band_roformer',
161
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-InstVoc-Duality/resolve/main/config_melbandroformer_instvoc_duality.yaml',
162
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-InstVoc-Duality/resolve/main/melband_roformer_instvoc_duality_v1.ckpt',
163
- ],
164
- 'melband_roformer_instvoc_duality_v2 (by unwa)':
165
- [
166
- 'mel_band_roformer',
167
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-InstVoc-Duality/resolve/main/config_melbandroformer_instvoc_duality.yaml',
168
- 'https://huggingface.co/pcunwa/Mel-Band-Roformer-InstVoc-Duality/resolve/main/melband_roformer_instvox_duality_v2.ckpt',
169
- ],
170
- 'FullnessVocalModel':
171
- [
172
- 'mel_band_roformer',
173
- 'https://huggingface.co/Aname-Tommy/MelBandRoformers/blob/main/config.yaml',
174
- 'https://huggingface.co/Aname-Tommy/MelBandRoformers/blob/main/FullnessVocalModel.ckpt',
175
- ],
176
- 'MelBandRoformerSYHFTV3Epsilon':
177
- [
178
- 'mel_band_roformer',
179
- 'https://huggingface.co/SYH99999/MelBandRoformerSYHFT/resolve/main/config_vocals_mel_band_roformer_ft.yaml',
180
- 'https://huggingface.co/SYH99999/MelBandRoformerSYHFTV3Epsilon/resolve/main/MelBandRoformerSYHFTV3Epsilon.ckpt',
181
- ],
182
- 'MelBandRoformerBigSYHFTV1':
183
- [
184
- 'mel_band_roformer',
185
- 'https://huggingface.co/SYH99999/MelBandRoformerBigSYHFTV1Fast/resolve/main/config.yaml',
186
- 'https://huggingface.co/SYH99999/MelBandRoformerBigSYHFTV1Fast/resolve/main/MelBandRoformerBigSYHFTV1.ckpt',
187
- ],
188
- 'VOCALS-BS-Roformer_1297 (by viperx)':
189
- [
190
- 'bs_roformer',
191
- 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/viperx/model_bs_roformer_ep_317_sdr_12.9755.yaml',
192
- 'https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/model_bs_roformer_ep_317_sdr_12.9755.ckpt',
193
- ],
194
- 'VOCALS-BS-Roformer_1296 (by viperx)':
195
- [
196
- 'bs_roformer',
197
- 'https://raw.githubusercontent.com/TRvlvr/application_data/main/mdx_model_data/mdx_c_configs/model_bs_roformer_ep_368_sdr_12.9628.yaml',
198
- 'https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/model_bs_roformer_ep_368_sdr_12.9628.ckpt',
199
- ],
200
- 'VOCALS-BS-RoformerLargev1 (by unwa)':
201
- [
202
- 'bs_roformer',
203
- 'https://huggingface.co/jarredou/unwa_bs_roformer/raw/main/config_bsrofoL.yaml',
204
- 'https://huggingface.co/jarredou/unwa_bs_roformer/resolve/main/BS-Roformer_LargeV1.ckpt',
205
- ],
206
- 'KARAOKE-MelBand-Roformer (by aufr33 & viperx)':
207
- [
208
- 'mel_band_roformer',
209
- 'https://huggingface.co/jarredou/aufr33-viperx-karaoke-melroformer-model/resolve/main/config_mel_band_roformer_karaoke.yaml',
210
- 'https://huggingface.co/jarredou/aufr33-viperx-karaoke-melroformer-model/resolve/main/mel_band_roformer_karaoke_aufr33_viperx_sdr_10.1956.ckpt',
211
- ],
212
- 'model_chorus_bs_roformer_ep_146_sdr_23.8613 (by Sucial)':
213
- [
214
- 'bs_roformer',
215
- 'https://huggingface.co/Sucial/Chorus_Male_Female_BS_Roformer/resolve/main/config_chorus_male_female_bs_roformer.yaml',
216
- 'https://huggingface.co/Sucial/Chorus_Male_Female_BS_Roformer/resolve/main/model_chorus_bs_roformer_ep_146_sdr_23.8613.ckpt',
217
- ],
218
- 'model_chorus_bs_roformer_ep_267_sdr_24.1275 (by Sucial)':
219
- [
220
- 'bs_roformer',
221
- 'https://huggingface.co/Sucial/Chorus_Male_Female_BS_Roformer/resolve/main/config_chorus_male_female_bs_roformer.yaml',
222
- 'https://huggingface.co/Sucial/Chorus_Male_Female_BS_Roformer/resolve/main/model_chorus_bs_roformer_ep_267_sdr_24.1275.ckpt',
223
- ],
224
- 'VOCALS-Male Female-BS-RoFormer Male Female Beta 7_2889 (by aufr33)':
225
- [
226
- 'bs_roformer',
227
- 'https://huggingface.co/Sucial/Chorus_Male_Female_BS_Roformer/resolve/main/config_chorus_male_female_bs_roformer.yaml',
228
- 'https://huggingface.co/RareSirMix/AIModelRehosting/resolve/main/bs_roformer_male_female_by_aufr33_sdr_7.2889.ckpt',
229
- ],
230
- 'OTHER-BS-Roformer_1053 (by viperx)':
231
- [
232
- 'bs_roformer',
233
- 'https://raw.githubusercontent.com/TRvlvr/application_data/main/mdx_model_data/mdx_c_configs/model_bs_roformer_ep_937_sdr_10.5309.yaml',
234
- 'https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/model_bs_roformer_ep_937_sdr_10.5309.ckpt',
235
- ],
236
- 'CROWD-REMOVAL-MelBand-Roformer (by aufr33)':
237
- [
238
- 'mel_band_roformer',
239
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.4/model_mel_band_roformer_crowd.yaml',
240
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.4/mel_band_roformer_crowd_aufr33_viperx_sdr_8.7144.ckpt',
241
- ],
242
- 'aspiration_mel_band_roformer (by Sucial)':
243
- [
244
- 'mel_band_roformer',
245
- 'https://huggingface.co/Sucial/Aspiration_Mel_Band_Roformer/resolve/main/config_aspiration_mel_band_roformer.yaml',
246
- 'https://huggingface.co/Sucial/Aspiration_Mel_Band_Roformer/resolve/main/aspiration_mel_band_roformer_sdr_18.9845.ckpt',
247
- ],
248
- 'VOCALS-VitLarge23 (by ZFTurbo)':
249
- [
250
- 'segm_models',
251
- 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/refs/heads/main/configs/config_vocals_segm_models.yaml',
252
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.0/model_vocals_segm_models_sdr_9.77.ckpt',
253
- ],
254
- 'CINEMATIC-BandIt_Plus (by kwatcharasupat)':
255
- [
256
- 'bandit',
257
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.3/config_dnr_bandit_bsrnn_multi_mus64.yaml',
258
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.3/model_bandit_plus_dnr_sdr_11.47.chpt',
259
- ],
260
- 'CINEMATIC-BandIt_v2 Multi (by kwatcharasupat)':
261
- [
262
- 'bandit_v2',
263
- 'https://huggingface.co/jarredou/banditv2_state_dicts_only/resolve/main/config_dnr_bandit_v2_mus64.yaml',
264
- 'https://huggingface.co/jarredou/banditv2_state_dicts_only/resolve/main/checkpoint-multi_state_dict.ckpt',
265
- ],
266
- 'CINEMATIC-BandIt_v2 Eng (by kwatcharasupat)':
267
- [
268
- 'bandit_v2',
269
- 'https://huggingface.co/jarredou/banditv2_state_dicts_only/resolve/main/config_dnr_bandit_v2_mus64.yaml',
270
- 'https://huggingface.co/jarredou/banditv2_state_dicts_only/resolve/main/checkpoint-eng_state_dict.ckpt',
271
- ],
272
- 'DRUMSEP-MDX23C_DrumSep_6stem (by aufr33 & jarredou)':
273
- [
274
- 'mdx23c',
275
- 'https://github.com/jarredou/models/releases/download/aufr33-jarredou_MDX23C_DrumSep_model_v0.1/aufr33-jarredou_DrumSep_model_mdx23c_ep_141_sdr_10.8059.yaml',
276
- 'https://github.com/jarredou/models/releases/download/aufr33-jarredou_MDX23C_DrumSep_model_v0.1/aufr33-jarredou_DrumSep_model_mdx23c_ep_141_sdr_10.8059.ckpt',
277
- ],
278
- 'mdx23c_similarity':
279
- [
280
- 'mdx23c',
281
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.10/config_mdx23c_similarity.yaml',
282
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.10/model_mdx23c_ep_271_l1_freq_72.2383.ckpt',
283
- ],
284
- 'last_bs_roformer (4 stem by Amane)':
285
- [
286
- 'bs_roformer',
287
- 'https://huggingface.co/listra92/MyModels/resolve/main/misc/config.yaml',
288
- 'https://huggingface.co/listra92/MyModels/resolve/main/misc/last_bs_roformer.ckpt',
289
- ],
290
- 'bs_roformer_4stems_ft':
291
- [
292
- 'bs_roformer',
293
- 'https://huggingface.co/SYH99999/bs_roformer_4stems_ft/resolve/main/config.yaml',
294
- 'https://huggingface.co/SYH99999/bs_roformer_4stems_ft/resolve/main/bs_roformer_4stems_ft.pth',
295
- ],
296
- 'BS Roformer MUSDB18HQ':
297
- [
298
- 'bs_roformer',
299
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.12/config_bs_roformer_384_8_2_485100.yaml',
300
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.12/model_bs_roformer_ep_17_sdr_9.6568.ckpt',
301
- ],
302
- 'musdb18_scnet_xl':
303
- [
304
- 'scnet',
305
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.13/config_musdb18_scnet_xl.yaml',
306
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.13/model_scnet_ep_54_sdr_9.8051.ckpt',
307
- ],
308
- 'SCNet-large_starrytong_fixed (by starrytong)':
309
- [
310
- 'scnet',
311
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.9/config_musdb18_scnet_large_starrytong.yaml',
312
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.9/SCNet-large_starrytong_fixed.ckpt',
313
- ],
314
- '4STEMS-SCNet_MUSDB18 (by starrytong)':
315
- [
316
- 'scnet',
317
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.6/config_musdb18_scnet.yaml',
318
- 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.6/scnet_checkpoint_musdb18.ckpt',
319
- ],
320
- 'DE-REVERB-MDX23C (by aufr33 & jarredou)':
321
- [
322
- 'mdx23c',
323
- 'https://huggingface.co/jarredou/aufr33_jarredou_MDXv3_DeReverb/resolve/main/config_dereverb_mdx23c.yaml',
324
- 'https://huggingface.co/jarredou/aufr33_jarredou_MDXv3_DeReverb/resolve/main/dereverb_mdx23c_sdr_6.9096.ckpt',
325
- ],
326
- 'dereverb-echo_mel_band_roformer (by Sucial)':
327
- [
328
- 'mel_band_roformer',
329
- 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb-echo_mel_band_roformer.yaml',
330
- 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/dereverb-echo_mel_band_roformer_sdr_10.0169.ckpt',
331
- ],
332
- 'dereverb-echo_128_4_4_mel_band_roformer_sdr_dry_12.4235 (by Sucial)':
333
- [
334
- 'mel_band_roformer',
335
- 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb-echo_128_4_4_mel_band_roformer.yaml',
336
- 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/dereverb-echo_128_4_4_mel_band_roformer_sdr_dry_12.4235.ckpt',
337
- ],
338
- 'dereverb_echo_mbr_v2_sdr_dry_13.4843 (by Sucial)':
339
- [
340
- 'mel_band_roformer',
341
- 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb_echo_mbr_v2.yaml',
342
- 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/dereverb_echo_mbr_v2_sdr_dry_13.4843.ckpt',
343
- ],
344
- 'de_big_reverb_mbr_ep_362 (by Sucial)':
345
- [
346
- 'mel_band_roformer',
347
- 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb-echo_mel_band_roformer.yaml',
348
- 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/de_big_reverb_mbr_ep_362.ckpt',
349
- ],
350
- 'de_super_big_reverb_mbr_ep_346 (by Sucial)':
351
- [
352
- 'mel_band_roformer',
353
- 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb-echo_mel_band_roformer.yaml',
354
- 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/de_super_big_reverb_mbr_ep_346.ckpt',
355
- ],
356
- 'dereverb_mel_band_roformer_anvuew':
357
- [
358
- 'mel_band_roformer',
359
- 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_anvuew.yaml',
360
- 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_anvuew_sdr_19.1729.ckpt',
361
- ],
362
- 'dereverb_mel_band_roformer_less_aggressive_anvuew':
363
- [
364
- 'mel_band_roformer',
365
- 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_anvuew.yaml',
366
- 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_less_aggressive_anvuew_sdr_18.8050.ckpt',
367
- ],
368
- 'dereverb_mel_band_roformer_mono_anvuew_sdr_20.4029':
369
- [
370
- 'mel_band_roformer',
371
- 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_anvuew.yaml',
372
- 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_mono_anvuew_sdr_20.4029.ckpt',
373
- ],
374
- 'DENOISE-MelBand-Roformer-1 (by aufr33)':
375
- [
376
- 'mel_band_roformer',
377
- 'https://huggingface.co/jarredou/aufr33_MelBand_Denoise/resolve/main/model_mel_band_roformer_denoise.yaml',
378
- 'https://huggingface.co/jarredou/aufr33_MelBand_Denoise/resolve/main/denoise_mel_band_roformer_aufr33_sdr_27.9959.ckpt',
379
- ],
380
- 'DENOISE-MelBand-Roformer-2 (by aufr33)':
381
- [
382
- 'mel_band_roformer',
383
- 'https://huggingface.co/jarredou/aufr33_MelBand_Denoise/resolve/main/model_mel_band_roformer_denoise.yaml',
384
- 'https://huggingface.co/jarredou/aufr33_MelBand_Denoise/resolve/main/denoise_mel_band_roformer_aufr33_aggr_sdr_27.9768.ckpt',
385
- ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
386
  }
 
1
+ models = {
2
+ 'VOCALS-InstVocHQ':
3
+ [
4
+ 'mdx23c',
5
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_vocals_mdx23c.yaml',
6
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.0/model_vocals_mdx23c_sdr_10.17.ckpt',
7
+ ],
8
+ 'VOCALS-MelBand-Roformer (by KimberleyJSN)':
9
+ [
10
+ 'mel_band_roformer',
11
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/KimberleyJensen/config_vocals_mel_band_roformer_kj.yaml',
12
+ 'https://huggingface.co/KimberleyJSN/melbandroformer/resolve/main/MelBandRoformer.ckpt',
13
+ ],
14
+ 'melband_roformer_big_beta4 (by unwa)':
15
+ [
16
+ 'mel_band_roformer',
17
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/config_melbandroformer_big_beta4.yaml',
18
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/melband_roformer_big_beta4.ckpt',
19
+ ],
20
+ 'big_beta5e (by unwa)':
21
+ [
22
+ 'mel_band_roformer',
23
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/big_beta5e.yaml',
24
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/big_beta5e.ckpt',
25
+ ],
26
+ 'big_beta6 (by unwa)':
27
+ [
28
+ 'mel_band_roformer',
29
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/big_beta6.yaml',
30
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-big/resolve/main/big_beta6.ckpt',
31
+ ],
32
+ 'kimmel_unwa_ft (by unwa)':
33
+ [
34
+ 'mel_band_roformer',
35
+ 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/config_kimmel_unwa_ft.yaml',
36
+ 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/kimmel_unwa_ft.ckpt',
37
+ ],
38
+ 'kimmel_unwa_ft2 (by unwa)':
39
+ [
40
+ 'mel_band_roformer',
41
+ 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/config_kimmel_unwa_ft.yaml',
42
+ 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/kimmel_unwa_ft2.ckpt',
43
+ ],
44
+ 'kimmel_unwa_ft2_bleedless (by unwa)':
45
+ [
46
+ 'mel_band_roformer',
47
+ 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/config_kimmel_unwa_ft.yaml',
48
+ 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/kimmel_unwa_ft2_bleedless.ckpt',
49
+ ],
50
+ 'mel_band_roformer_vocals_becruily':
51
+ [
52
+ 'mel_band_roformer',
53
+ 'https://huggingface.co/becruily/mel-band-roformer-vocals/resolve/main/config_vocals_becruily.yaml',
54
+ 'https://huggingface.co/becruily/mel-band-roformer-vocals/resolve/main/mel_band_roformer_vocals_becruily.ckpt',
55
+ ],
56
+ 'mel_band_roformer_instrumental_becruily':
57
+ [
58
+ 'mel_band_roformer',
59
+ 'https://huggingface.co/becruily/mel-band-roformer-instrumental/resolve/main/config_instrumental_becruily.yaml',
60
+ 'https://huggingface.co/becruily/mel-band-roformer-instrumental/resolve/main/mel_band_roformer_instrumental_becruily.ckpt',
61
+ ],
62
+ 'voc_gaboxFv1':
63
+ [
64
+ 'mel_band_roformer',
65
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gabox.yaml',
66
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gaboxFv1.ckpt',
67
+ ],
68
+ 'voc_gaboxFv2':
69
+ [
70
+ 'mel_band_roformer',
71
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gabox.yaml',
72
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gaboxFv2.ckpt',
73
+ ],
74
+ 'voc_Fv3':
75
+ [
76
+ 'mel_band_roformer',
77
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gabox.yaml',
78
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_Fv3.ckpt',
79
+ ],
80
+ 'voc_fv4':
81
+ [
82
+ 'mel_band_roformer',
83
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_gabox.yaml',
84
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/vocals/voc_fv4.ckpt',
85
+ ],
86
+ 'KaraokeGabox':
87
+ [
88
+ 'mel_band_roformer',
89
+ 'https://huggingface.co/jarredou/aufr33-viperx-karaoke-melroformer-model/resolve/main/config_mel_band_roformer_karaoke.yaml',
90
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/experimental/KaraokeGabox.ckpt',
91
+ ],
92
+ 'inst_gaboxBv2':
93
+ [
94
+ 'mel_band_roformer',
95
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
96
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gaboxBv2.ckpt',
97
+ ],
98
+ 'inst_gaboxFv3':
99
+ [
100
+ 'mel_band_roformer',
101
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
102
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gaboxFv3.ckpt',
103
+ ],
104
+ 'inst_gabox3':
105
+ [
106
+ 'mel_band_roformer',
107
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
108
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox3.ckpt',
109
+ ],
110
+ 'INSTV6':
111
+ [
112
+ 'mel_band_roformer',
113
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
114
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/INSTV6.ckpt',
115
+ ],
116
+ 'Inst_GaboxV7':
117
+ [
118
+ 'mel_band_roformer',
119
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
120
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/Inst_GaboxV7.ckpt',
121
+ ],
122
+ 'Denoise Debleed (by Gabox)':
123
+ [
124
+ 'mel_band_roformer',
125
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
126
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/denoisedebleed.ckpt',
127
+ ],
128
+ 'melband_roformer_inst_v1 (by unwa)':
129
+ [
130
+ 'mel_band_roformer',
131
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/config_melbandroformer_inst.yaml',
132
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/melband_roformer_inst_v1.ckpt',
133
+ ],
134
+ 'melband_roformer_inst_v2 (by unwa)':
135
+ [
136
+ 'mel_band_roformer',
137
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/config_melbandroformer_inst_v2.yaml',
138
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/melband_roformer_inst_v2.ckpt',
139
+ ],
140
+ 'inst_v1e (by unwa)':
141
+ [
142
+ 'mel_band_roformer',
143
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/config_melbandroformer_inst.yaml',
144
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-Inst/resolve/main/inst_v1e.ckpt',
145
+ ],
146
+ 'BS_Inst_EXP_VRL (by unwa)':
147
+ [
148
+ 'bs_roformer',
149
+ 'https://huggingface.co/pcunwa/BS-Roformer-Inst-EXP-Value-Residual/resolve/main/BS_Inst_EXP_VRL.yaml',
150
+ 'https://huggingface.co/pcunwa/BS-Roformer-Inst-EXP-Value-Residual/resolve/main/BS_Inst_EXP_VRL.ckpt',
151
+ ],
152
+ 'bleed_suppressor_v1 (by unwa)':
153
+ [
154
+ 'mel_band_roformer',
155
+ 'https://huggingface.co/listra92/MyModels/resolve/main/misc/config_bleed_suppressor_v1.yaml',
156
+ 'https://huggingface.co/listra92/MyModels/resolve/main/misc/bleed_suppressor_v1.ckpt',
157
+ ],
158
+ 'melband_roformer_instvoc_duality_v1 (by unwa)':
159
+ [
160
+ 'mel_band_roformer',
161
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-InstVoc-Duality/resolve/main/config_melbandroformer_instvoc_duality.yaml',
162
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-InstVoc-Duality/resolve/main/melband_roformer_instvoc_duality_v1.ckpt',
163
+ ],
164
+ 'melband_roformer_instvoc_duality_v2 (by unwa)':
165
+ [
166
+ 'mel_band_roformer',
167
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-InstVoc-Duality/resolve/main/config_melbandroformer_instvoc_duality.yaml',
168
+ 'https://huggingface.co/pcunwa/Mel-Band-Roformer-InstVoc-Duality/resolve/main/melband_roformer_instvox_duality_v2.ckpt',
169
+ ],
170
+ 'FullnessVocalModel':
171
+ [
172
+ 'mel_band_roformer',
173
+ 'https://huggingface.co/Aname-Tommy/MelBandRoformers/blob/main/config.yaml',
174
+ 'https://huggingface.co/Aname-Tommy/MelBandRoformers/blob/main/FullnessVocalModel.ckpt',
175
+ ],
176
+ 'MelBandRoformerSYHFTV3Epsilon':
177
+ [
178
+ 'mel_band_roformer',
179
+ 'https://huggingface.co/SYH99999/MelBandRoformerSYHFT/resolve/main/config_vocals_mel_band_roformer_ft.yaml',
180
+ 'https://huggingface.co/SYH99999/MelBandRoformerSYHFTV3Epsilon/resolve/main/MelBandRoformerSYHFTV3Epsilon.ckpt',
181
+ ],
182
+ 'MelBandRoformerBigSYHFTV1':
183
+ [
184
+ 'mel_band_roformer',
185
+ 'https://huggingface.co/SYH99999/MelBandRoformerBigSYHFTV1Fast/resolve/main/config.yaml',
186
+ 'https://huggingface.co/SYH99999/MelBandRoformerBigSYHFTV1Fast/resolve/main/MelBandRoformerBigSYHFTV1.ckpt',
187
+ ],
188
+ 'VOCALS-BS-Roformer_1297 (by viperx)':
189
+ [
190
+ 'bs_roformer',
191
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/viperx/model_bs_roformer_ep_317_sdr_12.9755.yaml',
192
+ 'https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/model_bs_roformer_ep_317_sdr_12.9755.ckpt',
193
+ ],
194
+ 'VOCALS-BS-Roformer_1296 (by viperx)':
195
+ [
196
+ 'bs_roformer',
197
+ 'https://raw.githubusercontent.com/TRvlvr/application_data/main/mdx_model_data/mdx_c_configs/model_bs_roformer_ep_368_sdr_12.9628.yaml',
198
+ 'https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/model_bs_roformer_ep_368_sdr_12.9628.ckpt',
199
+ ],
200
+ 'VOCALS-BS-RoformerLargev1 (by unwa)':
201
+ [
202
+ 'bs_roformer',
203
+ 'https://huggingface.co/jarredou/unwa_bs_roformer/raw/main/config_bsrofoL.yaml',
204
+ 'https://huggingface.co/jarredou/unwa_bs_roformer/resolve/main/BS-Roformer_LargeV1.ckpt',
205
+ ],
206
+ 'KARAOKE-MelBand-Roformer (by aufr33 & viperx)':
207
+ [
208
+ 'mel_band_roformer',
209
+ 'https://huggingface.co/jarredou/aufr33-viperx-karaoke-melroformer-model/resolve/main/config_mel_band_roformer_karaoke.yaml',
210
+ 'https://huggingface.co/jarredou/aufr33-viperx-karaoke-melroformer-model/resolve/main/mel_band_roformer_karaoke_aufr33_viperx_sdr_10.1956.ckpt',
211
+ ],
212
+ 'model_chorus_bs_roformer_ep_146_sdr_23.8613 (by Sucial)':
213
+ [
214
+ 'bs_roformer',
215
+ 'https://huggingface.co/Sucial/Chorus_Male_Female_BS_Roformer/resolve/main/config_chorus_male_female_bs_roformer.yaml',
216
+ 'https://huggingface.co/Sucial/Chorus_Male_Female_BS_Roformer/resolve/main/model_chorus_bs_roformer_ep_146_sdr_23.8613.ckpt',
217
+ ],
218
+ 'model_chorus_bs_roformer_ep_267_sdr_24.1275 (by Sucial)':
219
+ [
220
+ 'bs_roformer',
221
+ 'https://huggingface.co/Sucial/Chorus_Male_Female_BS_Roformer/resolve/main/config_chorus_male_female_bs_roformer.yaml',
222
+ 'https://huggingface.co/Sucial/Chorus_Male_Female_BS_Roformer/resolve/main/model_chorus_bs_roformer_ep_267_sdr_24.1275.ckpt',
223
+ ],
224
+ 'VOCALS-Male Female-BS-RoFormer Male Female Beta 7_2889 (by aufr33)':
225
+ [
226
+ 'bs_roformer',
227
+ 'https://huggingface.co/Sucial/Chorus_Male_Female_BS_Roformer/resolve/main/config_chorus_male_female_bs_roformer.yaml',
228
+ 'https://huggingface.co/RareSirMix/AIModelRehosting/resolve/main/bs_roformer_male_female_by_aufr33_sdr_7.2889.ckpt',
229
+ ],
230
+ 'OTHER-BS-Roformer_1053 (by viperx)':
231
+ [
232
+ 'bs_roformer',
233
+ 'https://raw.githubusercontent.com/TRvlvr/application_data/main/mdx_model_data/mdx_c_configs/model_bs_roformer_ep_937_sdr_10.5309.yaml',
234
+ 'https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/model_bs_roformer_ep_937_sdr_10.5309.ckpt',
235
+ ],
236
+ 'CROWD-REMOVAL-MelBand-Roformer (by aufr33)':
237
+ [
238
+ 'mel_band_roformer',
239
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.4/model_mel_band_roformer_crowd.yaml',
240
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.4/mel_band_roformer_crowd_aufr33_viperx_sdr_8.7144.ckpt',
241
+ ],
242
+ 'aspiration_mel_band_roformer (by Sucial)':
243
+ [
244
+ 'mel_band_roformer',
245
+ 'https://huggingface.co/Sucial/Aspiration_Mel_Band_Roformer/resolve/main/config_aspiration_mel_band_roformer.yaml',
246
+ 'https://huggingface.co/Sucial/Aspiration_Mel_Band_Roformer/resolve/main/aspiration_mel_band_roformer_sdr_18.9845.ckpt',
247
+ ],
248
+ 'VOCALS-VitLarge23 (by ZFTurbo)':
249
+ [
250
+ 'segm_models',
251
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/refs/heads/main/configs/config_vocals_segm_models.yaml',
252
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.0/model_vocals_segm_models_sdr_9.77.ckpt',
253
+ ],
254
+ 'CINEMATIC-BandIt_Plus (by kwatcharasupat)':
255
+ [
256
+ 'bandit',
257
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.3/config_dnr_bandit_bsrnn_multi_mus64.yaml',
258
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.3/model_bandit_plus_dnr_sdr_11.47.chpt',
259
+ ],
260
+ 'CINEMATIC-BandIt_v2 Multi (by kwatcharasupat)':
261
+ [
262
+ 'bandit_v2',
263
+ 'https://huggingface.co/jarredou/banditv2_state_dicts_only/resolve/main/config_dnr_bandit_v2_mus64.yaml',
264
+ 'https://huggingface.co/jarredou/banditv2_state_dicts_only/resolve/main/checkpoint-multi_state_dict.ckpt',
265
+ ],
266
+ 'CINEMATIC-BandIt_v2 Eng (by kwatcharasupat)':
267
+ [
268
+ 'bandit_v2',
269
+ 'https://huggingface.co/jarredou/banditv2_state_dicts_only/resolve/main/config_dnr_bandit_v2_mus64.yaml',
270
+ 'https://huggingface.co/jarredou/banditv2_state_dicts_only/resolve/main/checkpoint-eng_state_dict.ckpt',
271
+ ],
272
+ 'DRUMSEP-MDX23C_DrumSep_6stem (by aufr33 & jarredou)':
273
+ [
274
+ 'mdx23c',
275
+ 'https://github.com/jarredou/models/releases/download/aufr33-jarredou_MDX23C_DrumSep_model_v0.1/aufr33-jarredou_DrumSep_model_mdx23c_ep_141_sdr_10.8059.yaml',
276
+ 'https://github.com/jarredou/models/releases/download/aufr33-jarredou_MDX23C_DrumSep_model_v0.1/aufr33-jarredou_DrumSep_model_mdx23c_ep_141_sdr_10.8059.ckpt',
277
+ ],
278
+ 'Phantom Center extraction (by wesleyr36)':
279
+ [
280
+ 'mdx23c',
281
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.10/config_mdx23c_similarity.yaml',
282
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.10/model_mdx23c_ep_271_l1_freq_72.2383.ckpt',
283
+ ],
284
+ 'last_bs_roformer (4 stem by Amane)':
285
+ [
286
+ 'bs_roformer',
287
+ 'https://huggingface.co/listra92/MyModels/resolve/main/misc/config.yaml',
288
+ 'https://huggingface.co/listra92/MyModels/resolve/main/misc/last_bs_roformer.ckpt',
289
+ ],
290
+ 'bs_roformer_4stems_ft':
291
+ [
292
+ 'bs_roformer',
293
+ 'https://huggingface.co/SYH99999/bs_roformer_4stems_ft/resolve/main/config.yaml',
294
+ 'https://huggingface.co/SYH99999/bs_roformer_4stems_ft/resolve/main/bs_roformer_4stems_ft.pth',
295
+ ],
296
+ 'BS Roformer MUSDB18HQ':
297
+ [
298
+ 'bs_roformer',
299
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.12/config_bs_roformer_384_8_2_485100.yaml',
300
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.12/model_bs_roformer_ep_17_sdr_9.6568.ckpt',
301
+ ],
302
+ 'SCNet_XL':
303
+ [
304
+ 'scnet',
305
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.13/config_musdb18_scnet_xl.yaml',
306
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.13/model_scnet_ep_54_sdr_9.8051.ckpt',
307
+ ],
308
+ 'SCNet-large_starrytong_fixed (by starrytong)':
309
+ [
310
+ 'scnet',
311
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.9/config_musdb18_scnet_large_starrytong.yaml',
312
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.9/SCNet-large_starrytong_fixed.ckpt',
313
+ ],
314
+ 'SCNet':
315
+ [
316
+ 'scnet',
317
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.6/config_musdb18_scnet.yaml',
318
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v.1.0.6/scnet_checkpoint_musdb18.ckpt',
319
+ ],
320
+ 'SCNet_Large':
321
+ [
322
+ 'scnet',
323
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.8/config_musdb18_scnet_large.yaml',
324
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.8/model_scnet_sdr_9.3244.ckpt',
325
+ ]
326
+ 'DE-REVERB-MDX23C (by aufr33 & jarredou)':
327
+ [
328
+ 'mdx23c',
329
+ 'https://huggingface.co/jarredou/aufr33_jarredou_MDXv3_DeReverb/resolve/main/config_dereverb_mdx23c.yaml',
330
+ 'https://huggingface.co/jarredou/aufr33_jarredou_MDXv3_DeReverb/resolve/main/dereverb_mdx23c_sdr_6.9096.ckpt',
331
+ ],
332
+ 'dereverb-echo_mel_band_roformer (by Sucial)':
333
+ [
334
+ 'mel_band_roformer',
335
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb-echo_mel_band_roformer.yaml',
336
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/dereverb-echo_mel_band_roformer_sdr_10.0169.ckpt',
337
+ ],
338
+ 'dereverb-echo_128_4_4_mel_band_roformer_sdr_dry_12.4235 (by Sucial)':
339
+ [
340
+ 'mel_band_roformer',
341
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb-echo_128_4_4_mel_band_roformer.yaml',
342
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/dereverb-echo_128_4_4_mel_band_roformer_sdr_dry_12.4235.ckpt',
343
+ ],
344
+ 'dereverb_echo_mbr_v2_sdr_dry_13.4843 (by Sucial)':
345
+ [
346
+ 'mel_band_roformer',
347
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb_echo_mbr_v2.yaml',
348
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/dereverb_echo_mbr_v2_sdr_dry_13.4843.ckpt',
349
+ ],
350
+ 'de_big_reverb_mbr_ep_362 (by Sucial)':
351
+ [
352
+ 'mel_band_roformer',
353
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb-echo_mel_band_roformer.yaml',
354
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/de_big_reverb_mbr_ep_362.ckpt',
355
+ ],
356
+ 'de_super_big_reverb_mbr_ep_346 (by Sucial)':
357
+ [
358
+ 'mel_band_roformer',
359
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb-echo_mel_band_roformer.yaml',
360
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/de_super_big_reverb_mbr_ep_346.ckpt',
361
+ ],
362
+ 'dereverb_mel_band_roformer_anvuew':
363
+ [
364
+ 'mel_band_roformer',
365
+ 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_anvuew.yaml',
366
+ 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_anvuew_sdr_19.1729.ckpt',
367
+ ],
368
+ 'dereverb_mel_band_roformer_less_aggressive_anvuew':
369
+ [
370
+ 'mel_band_roformer',
371
+ 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_anvuew.yaml',
372
+ 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_less_aggressive_anvuew_sdr_18.8050.ckpt',
373
+ ],
374
+ 'dereverb_mel_band_roformer_mono_anvuew_sdr_20.4029':
375
+ [
376
+ 'mel_band_roformer',
377
+ 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_anvuew.yaml',
378
+ 'https://huggingface.co/anvuew/dereverb_mel_band_roformer/resolve/main/dereverb_mel_band_roformer_mono_anvuew_sdr_20.4029.ckpt',
379
+ ],
380
+ 'DENOISE-MelBand-Roformer-1 (by aufr33)':
381
+ [
382
+ 'mel_band_roformer',
383
+ 'https://huggingface.co/jarredou/aufr33_MelBand_Denoise/resolve/main/model_mel_band_roformer_denoise.yaml',
384
+ 'https://huggingface.co/jarredou/aufr33_MelBand_Denoise/resolve/main/denoise_mel_band_roformer_aufr33_sdr_27.9959.ckpt',
385
+ ],
386
+ 'DENOISE-MelBand-Roformer-2 (by aufr33)':
387
+ [
388
+ 'mel_band_roformer',
389
+ 'https://huggingface.co/jarredou/aufr33_MelBand_Denoise/resolve/main/model_mel_band_roformer_denoise.yaml',
390
+ 'https://huggingface.co/jarredou/aufr33_MelBand_Denoise/resolve/main/denoise_mel_band_roformer_aufr33_aggr_sdr_27.9768.ckpt',
391
+ ],
392
+ 'dereverb_echo_mbr_fused_0.5_v2_0.25_big_0.25_super (by Sucial)':
393
+ [
394
+ 'mel_band_roformer',
395
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/config_dereverb_echo_mbr_v2.yaml',
396
+ 'https://huggingface.co/Sucial/Dereverb-Echo_Mel_Band_Roformer/resolve/main/dereverb_echo_mbr_fused_0.5_v2_0.25_big_0.25_super.ckpt',
397
+ ],
398
+ 'Apollo LQ MP3 restoration (by JusperLee)':
399
+ [
400
+ 'apollo',
401
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/refs/heads/main/configs/config_apollo.yaml',
402
+ 'https://huggingface.co/JusperLee/Apollo/resolve/main/pytorch_model.bin',
403
+ ],
404
+ 'Apollo Vocal Enhancer V2 WIP (by lew)':
405
+ [
406
+ 'apollo',
407
+ 'https://file.garden/ZDvN3R-J4RNQd5n7/config_apollo_vocal_v2.yaml',
408
+ 'https://file.garden/ZDvN3R-J4RNQd5n7/apollo_model_v2.ckpt',
409
+ ],
410
+ 'apollo_model_uni':
411
+ [
412
+ 'apollo',
413
+ 'https://huggingface.co/Sucial/MSST-WebUI/resolve/55155c4e2f99d0ca94d24fce88d6dc25711a9252/All_Models/single_stem_models/apollo_model_uni.ckpt',
414
+ 'https://huggingface.co/spaces/patriotyk/Apollo/resolve/cf52a13c47a3634bb55ff9f2e0fd0d28c170ed44/config_apollo_uni.yaml',
415
+ ],
416
+ 'MelBand Roformer Aspiration (by SUC-DriverOld)':
417
+ [
418
+ 'mel_band_roformer',
419
+ 'https://huggingface.co/Sucial/Aspiration_Mel_Band_Roformer/raw/main/config_aspiration_mel_band_roformer.yaml',
420
+ 'https://huggingface.co/Sucial/Aspiration_Mel_Band_Roformer/raw/main/aspiration_mel_band_roformer_sdr_18.9845.ckpt',
421
+ ],
422
+ 'HTDemucs4 (MVSep finetuned)':
423
+ [
424
+ 'htdemucs',
425
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_vocals_htdemucs.yaml',
426
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.0/model_vocals_htdemucs_sdr_8.78.ckpt',
427
+ ],
428
+ 'Swin Upernet':
429
+ [
430
+ 'swin_upernet',
431
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.2/config_vocals_swin_upernet.yaml',
432
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.2/model_swin_upernet_ep_56_sdr_10.6703.ckpt',
433
+ ],
434
+ 'HTDemucs4 FT Drums':
435
+ [
436
+ 'htdemucs',
437
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_musdb18_htdemucs.yaml',
438
+ 'https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/f7e0c4bc-ba3fe64a.th',
439
+ ],
440
+ 'HTDemucs4 FT Bass':
441
+ [
442
+ 'htdemucs',
443
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_musdb18_htdemucs.yaml',
444
+ 'https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/d12395a8-e57c48e6.th',
445
+ ],
446
+ 'HTDemucs4 FT Other':
447
+ [
448
+ 'htdemucs',
449
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_musdb18_htdemucs.yaml',
450
+ 'https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/92cfc3b6-ef3bcb9c.th',
451
+ ],
452
+ 'HTDemucs4 FT Vocals (Official repository)':
453
+ [
454
+ 'htdemucs',
455
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_musdb18_htdemucs.yaml',
456
+ 'https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/04573f0d-f3cf25b2.th',
457
+ ],
458
+ 'model_mdx23c_ep_168_sdr_7.0207':
459
+ [
460
+ 'mdx23c',
461
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.1/config_musdb18_mdx23c.yaml',
462
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.1/model_mdx23c_ep_168_sdr_7.0207.ckpt',
463
+ ],
464
+ 'HTDemucs4':
465
+ [
466
+ 'demucs',
467
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_musdb18_htdemucs.yaml',
468
+ 'https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/955717e8-8726e21a.th',
469
+ ],
470
+ 'HTDemucs4 (6 stems)':
471
+ [
472
+ 'demucs',
473
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_htdemucs_6stems.yaml',
474
+ 'https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/5c90dfd2-34c22ccb.th',
475
+ ],
476
+ 'Demucs3 mmi':
477
+ [
478
+ 'demucs',
479
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_musdb18_demucs3_mmi.yaml',
480
+ 'https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/75fc33f5-1941ce65.th',
481
+ ],
482
+ 'DrumSep htdemucs (by inagoy)':
483
+ [
484
+ 'demucs',
485
+ 'https://raw.githubusercontent.com/ZFTurbo/Music-Source-Separation-Training/main/configs/config_drumsep.yaml',
486
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.5/model_drumsep.th',
487
+ ],
488
+ 'TS BS Mamba2':
489
+ [
490
+ 'mel_band_roformer',
491
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.9/config_musdb18_bs_mamba2.yaml',
492
+ 'https://github.com/ZFTurbo/Music-Source-Separation-Training/releases/download/v1.0.9/model_bs_mamba2_ep_11_sdr_6.8723.ckpt',
493
+ ],
494
+ 'deverb_bs_roformer_8_256dim_8depth':
495
+ [
496
+ 'bs_roformer',
497
+ 'https://huggingface.co/anvuew/deverb_bs_roformer/resolve/main/deverb_bs_roformer_8_256dim_8depth.yaml',
498
+ 'https://huggingface.co/anvuew/deverb_bs_roformer/resolve/main/deverb_bs_roformer_8_256dim_8depth.ckpt',
499
+ ],
500
+ 'BS-RoFormer Vocal Test (by gabox)':
501
+ [
502
+ 'bs_roformer',
503
+ 'https://huggingface.co/GaboxR67/BSRoformerVocTest/resolve/main/voc_gaboxBSroformer.yaml',
504
+ 'https://huggingface.co/GaboxR67/BSRoformerVocTest/resolve/main/voc_gaboxBSR.ckpt',
505
+ ],
506
+ 'FT3 preview vocal model (by Unwa)':
507
+ [
508
+ 'mel_band_roformer',
509
+ 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/config_kimmel_unwa_ft.yaml',
510
+ 'https://huggingface.co/pcunwa/Kim-Mel-Band-Roformer-FT/resolve/main/kimmel_unwa_ft3_prev.ckpt',
511
+ ],
512
+ 'inst_gaboxBv3 instrumental model (by Gabox)':
513
+ [
514
+ 'mel_band_roformer',
515
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
516
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gaboxBv3.ckpt',
517
+ ],
518
+ 'Inst_GaboxFVX model (by Gabox)':
519
+ [
520
+ 'mel_band_roformer',
521
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
522
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/Inst_GaboxFVX.ckpt',
523
+ ],
524
+ 'INSTV7N model (by Gabox)':
525
+ [
526
+ 'mel_band_roformer',
527
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/inst_gabox.yaml',
528
+ 'https://huggingface.co/GaboxR67/MelBandRoformers/resolve/main/melbandroformers/instrumental/INSTV7N.ckpt',
529
+ ],
530
+ '400MB experimental BS-Roformer inst model (by Unwa)':
531
+ [
532
+ 'bs_roformer',
533
+ 'https://huggingface.co/pcunwa/BS-Roformer-Inst-EXP-Value-Residual/resolve/main/BS_Inst_EXP_VRL.yaml',
534
+ 'https://huggingface.co/pcunwa/BS-Roformer-Inst-EXP-Value-Residual/resolve/main/BS_Inst_EXP_VRL.ckpt',
535
+ ],
536
+ 'MelBand Roformer 4 Stem FT Large (by SYH99999)':
537
+ [
538
+ 'mel_band_roformer',
539
+ 'https://huggingface.co/RareSirMix/AIModelRehosting/resolve/main/MelBandRoformer4StemFTLarge.yaml',
540
+ 'https://huggingface.co/SYH99999/MelBandRoformer4StemFTLarge/resolve/main/MelBandRoformer4StemFTLarge.ckpt',
541
+ ],
542
  }