Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -84,13 +84,7 @@ with demo:
|
|
| 84 |
# Right column: Output display
|
| 85 |
with gr.Column():
|
| 86 |
output_box = gr.Markdown("") # will display the result in Markdown (supports bold, lists, etc.)
|
| 87 |
-
|
| 88 |
-
gr.Examples(
|
| 89 |
-
inputs=image_in,
|
| 90 |
-
outputs=output_box,
|
| 91 |
-
fn=tag_image,
|
| 92 |
-
cache_examples=False
|
| 93 |
-
)
|
| 94 |
# Link the button click to the function
|
| 95 |
tag_button.click(fn=tag_image, inputs=[image_in, format_choice], outputs=output_box)
|
| 96 |
# Footer/Info
|
|
|
|
| 84 |
# Right column: Output display
|
| 85 |
with gr.Column():
|
| 86 |
output_box = gr.Markdown("") # will display the result in Markdown (supports bold, lists, etc.)
|
| 87 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
# Link the button click to the function
|
| 89 |
tag_button.click(fn=tag_image, inputs=[image_in, format_choice], outputs=output_box)
|
| 90 |
# Footer/Info
|