Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,12 @@
|
|
|
|
1 |
from PolUVR.utils import PolUVR_UI
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
from PolUVR.utils import PolUVR_UI
|
3 |
|
4 |
+
with gr.Blocks(
|
5 |
+
title="🎵 PolUVR 🎵",
|
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 🎵 </center></h1>")
|
10 |
+
PolUVR_UI()
|
11 |
+
|
12 |
+
app.queue().launch(share=True, debug=True, show_error=True)
|