thliang01 commited on
Commit
748abf8
·
verified ·
1 Parent(s): 3b999ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -1,9 +1,9 @@
1
  import gradio as gr
2
 
3
  image_urls = [
4
- "https://huggingface.co/datasets/thliang01/zipqdora-images/resolve/main/g1.png",
5
- "https://huggingface.co/datasets/thliang01/zipqdora-images/resolve/main/g2.png",
6
- "https://huggingface.co/datasets/thliang01/zipqdora-images/resolve/main/g3.png",
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 results
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()