File size: 473 Bytes
745f387
c52c271
b08c20e
745f387
 
 
 
 
 
9aa49c3
76d60b9
 
 
 
 
 
745f387
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import gradio as gr
from PolUVR.utils import PolUVR_UI

with gr.Blocks(
    title="🎵 PolUVR 🎵",
    css="footer{display:none !important}",
    theme=gr.themes.Default(spacing_size="sm", radius_size="lg")
) as app:
    gr.HTML("<h1><center> 🎵 PolUVR 🎵 </center></h1>")
    gr.Markdown(
        """
        New Models:

        - MelBand Roformer | Karaoke by becruily
        """
    )
    PolUVR_UI()

app.queue().launch(share=True, debug=True, show_error=True)