Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
image_urls = [
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
7 |
]
|
8 |
|
9 |
def img_show():
|
@@ -16,7 +16,7 @@ def img_show():
|
|
16 |
|
17 |
with gr.Blocks() as demo:
|
18 |
gr.Markdown("""
|
19 |
-
# Awesome
|
20 |
""")
|
21 |
gallery = gr.Gallery(
|
22 |
label="Generated images", show_label=False, elem_id="gallery"
|
@@ -26,4 +26,4 @@ with gr.Blocks() as demo:
|
|
26 |
btn.click(img_show, None, gallery)
|
27 |
|
28 |
if __name__ == "__main__":
|
29 |
-
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
image_urls = [
|
4 |
+
"images/g1.png",
|
5 |
+
"images/g2.png",
|
6 |
+
"images/g3.png",
|
7 |
]
|
8 |
|
9 |
def img_show():
|
|
|
16 |
|
17 |
with gr.Blocks() as demo:
|
18 |
gr.Markdown("""
|
19 |
+
# Awesome result from multi concept DoRAs
|
20 |
""")
|
21 |
gallery = gr.Gallery(
|
22 |
label="Generated images", show_label=False, elem_id="gallery"
|
|
|
26 |
btn.click(img_show, None, gallery)
|
27 |
|
28 |
if __name__ == "__main__":
|
29 |
+
demo.launch()
|