tsungtao commited on
Commit
4577579
·
1 Parent(s): f55eca6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -58,6 +58,9 @@ def infer(prompts, negative_prompts, image):
58
 
59
  title = "ControlNet MLSD"
60
  description = "This is a demo on ControlNet MLSD."
61
- examples = [["living room with TV", "fan", "image_01.jpg"]]
 
 
 
62
 
63
  gr.Interface(infer, inputs=["text", "text", "image"], outputs="gallery", title = title, description = description, examples = examples, theme='gradio/soft').launch()
 
58
 
59
  title = "ControlNet MLSD"
60
  description = "This is a demo on ControlNet MLSD."
61
+ examples = [["living room with TV", "fan", "image_01.jpg"],
62
+ ["a living room with hardwood floors and a flat screen tv", "sea", "image_02.jpg"],
63
+ ["a living room with a fireplace and a view of the ocean", "pendant", “image_03.jpg”]
64
+ ]
65
 
66
  gr.Interface(infer, inputs=["text", "text", "image"], outputs="gallery", title = title, description = description, examples = examples, theme='gradio/soft').launch()