Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,8 @@ with gr.Blocks() as demo:
|
|
76 |
app_input = gr.Image(type='filepath')
|
77 |
gr.Examples(['images/1.jpg', 'images/2.png', 'images/3.png', 'images/4.png'],
|
78 |
inputs=app_input)
|
79 |
-
|
|
|
80 |
with gr.Column():
|
81 |
app_output = [gr.Image(type="numpy"), gr.JSON()]
|
82 |
|
|
|
76 |
app_input = gr.Image(type='filepath')
|
77 |
gr.Examples(['images/1.jpg', 'images/2.png', 'images/3.png', 'images/4.png'],
|
78 |
inputs=app_input)
|
79 |
+
|
80 |
+
start_button = gr.Button("Run 🚀", elem_classes="button-gradient")
|
81 |
with gr.Column():
|
82 |
app_output = [gr.Image(type="numpy"), gr.JSON()]
|
83 |
|