Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -26,6 +26,10 @@ ROFORMER_MODELS = {
|
|
26 |
'MelBand Roformer Kim | Inst V2 by Unwa': 'melband_roformer_inst_v2.ckpt',
|
27 |
'MelBand Roformer Kim | InstVoc Duality V1 by Unwa': 'melband_roformer_instvoc_duality_v1.ckpt',
|
28 |
'MelBand Roformer Kim | InstVoc Duality V2 by Unwa': 'melband_roformer_instvox_duality_v2.ckpt',
|
|
|
|
|
|
|
|
|
29 |
}
|
30 |
#=========================#
|
31 |
# MDX23C Models #
|
@@ -327,10 +331,17 @@ def update_stems(model):
|
|
327 |
else:
|
328 |
return gr.update(visible=False)
|
329 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
with gr.Blocks(
|
331 |
title="🎵 Audio-Separator 🎵",
|
332 |
#css="footer{display:none !important}",
|
333 |
-
theme=
|
334 |
) as app:
|
335 |
gr.HTML("<h1> 🎵 Audio-Separator 🎵 </h1>")
|
336 |
|
|
|
26 |
'MelBand Roformer Kim | Inst V2 by Unwa': 'melband_roformer_inst_v2.ckpt',
|
27 |
'MelBand Roformer Kim | InstVoc Duality V1 by Unwa': 'melband_roformer_instvoc_duality_v1.ckpt',
|
28 |
'MelBand Roformer Kim | InstVoc Duality V2 by Unwa': 'melband_roformer_instvox_duality_v2.ckpt',
|
29 |
+
'Vocals Mel Band Roformer': 'vocals_mel_band_roformer.ckpt'
|
30 |
+
'Mel Band Roformer Bleed Suppressor V1': 'mel_band_roformer_bleed_suppressor_v1.ckpt',
|
31 |
+
'Mel Band Roformer SYHFT V2': 'MelBandRoformerSYHFTV2.ckpt',
|
32 |
+
'Mel Band Roformer SYHFT V2.5': 'MelBandRoformerSYHFTV2.5.ckpt'
|
33 |
}
|
34 |
#=========================#
|
35 |
# MDX23C Models #
|
|
|
331 |
else:
|
332 |
return gr.update(visible=False)
|
333 |
|
334 |
+
|
335 |
+
|
336 |
+
|
337 |
+
|
338 |
+
|
339 |
+
|
340 |
+
|
341 |
with gr.Blocks(
|
342 |
title="🎵 Audio-Separator 🎵",
|
343 |
#css="footer{display:none !important}",
|
344 |
+
theme=gr.themes.Base(primary_hue=gr.themes.colors.red, secondary_hue=gr.themes.colors.pink
|
345 |
) as app:
|
346 |
gr.HTML("<h1> 🎵 Audio-Separator 🎵 </h1>")
|
347 |
|