Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -54,7 +54,8 @@ with gr.Blocks() as demo:
|
|
| 54 |
).style(grid=[2], height="auto")
|
| 55 |
|
| 56 |
image_button.click(generate_image, inputs=[input_image], outputs=gallery)
|
| 57 |
-
|
|
|
|
| 58 |
inputs=[input_image],
|
| 59 |
outputs=[gallery],
|
| 60 |
fn=generate_image,
|
|
|
|
| 54 |
).style(grid=[2], height="auto")
|
| 55 |
|
| 56 |
image_button.click(generate_image, inputs=[input_image], outputs=gallery)
|
| 57 |
+
|
| 58 |
+
examples = gr.Examples(examples=["input_example.png"],
|
| 59 |
inputs=[input_image],
|
| 60 |
outputs=[gallery],
|
| 61 |
fn=generate_image,
|