Files changed (1) hide show
  1. UVR.py +12 -0
UVR.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from PolUVR.utils import PolUVR_UI
3
+
4
+ with gr.Blocks(
5
+ title="🎵 PolUVR 🎵 UVR",
6
+ css="footer{display:none !important}",
7
+ theme=gr.themes.Default(spacing_size="sm", radius_size="lg")
8
+ ) as app:
9
+ gr.HTML("<h1><center> 🎵 PolUVR 🎵 UVR </center></h1>")
10
+ PolUVR_UI()
11
+
12
+ app.queue().launch(share=True, debug=True, show_error=True)