Update app.py
Browse files
app.py
CHANGED
@@ -60,15 +60,14 @@ def app(input_image, color_option='Artistic'):
|
|
60 |
|
61 |
title = "<span style='color: #191970;'>Aiconvert.online</span>"
|
62 |
|
63 |
-
|
64 |
gr.Interface(
|
65 |
app,
|
66 |
gr.inputs.Image(type="pil", label="Input"),
|
67 |
-
gr.inputs.Dropdown(choices=['Artistic', 'Stable'], default='Artistic', label="model"),
|
68 |
gr.Image(type="pil", label="Output", show_share_button=False),
|
69 |
title=title,
|
70 |
css="footer{display:none !important;}",
|
71 |
theme=gr.themes.Base(),
|
72 |
enable_queue=True,
|
73 |
allow_flagging=False
|
74 |
-
|
|
|
60 |
|
61 |
title = "<span style='color: #191970;'>Aiconvert.online</span>"
|
62 |
|
|
|
63 |
gr.Interface(
|
64 |
app,
|
65 |
gr.inputs.Image(type="pil", label="Input"),
|
66 |
+
gr.inputs.Dropdown(choices=['Artistic', 'Stable'], default='Artistic', label="model"),
|
67 |
gr.Image(type="pil", label="Output", show_share_button=False),
|
68 |
title=title,
|
69 |
css="footer{display:none !important;}",
|
70 |
theme=gr.themes.Base(),
|
71 |
enable_queue=True,
|
72 |
allow_flagging=False
|
73 |
+
).launch()
|