Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -83,7 +83,10 @@ gr.Markdown(
|
|
83 |
btn = gr.Button("Run")
|
84 |
#btn.click(inputs = ["text", "text", "image"])
|
85 |
|
|
|
|
|
|
|
86 |
btn.click(fn=infer, inputs = ["text", "text", "image"], outputs = "gallery",
|
87 |
-
examples=[
|
88 |
|
89 |
demo.launch()
|
|
|
83 |
btn = gr.Button("Run")
|
84 |
#btn.click(inputs = ["text", "text", "image"])
|
85 |
|
86 |
+
#btn.click(fn=infer, inputs = ["text", "text", "image"], outputs = "gallery",
|
87 |
+
# examples=[["a Labrador crossing the road", "low quality", control_image]])
|
88 |
+
|
89 |
btn.click(fn=infer, inputs = ["text", "text", "image"], outputs = "gallery",
|
90 |
+
examples=["a Labrador crossing the road", "low quality", control_image])
|
91 |
|
92 |
demo.launch()
|