Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -25,12 +25,13 @@ def fonc(img):
|
|
| 25 |
|
| 26 |
with gr.Blocks(css="footer {visibility: hidden}") as demo:
|
| 27 |
gr.Markdown("Start typing below and then click **Run** to see the output.")
|
| 28 |
-
gr.HTML("<br
|
| 29 |
img1=gr.Image(type='filepath',tool=['editor', 'select'] )
|
| 30 |
-
gr.HTML("<br
|
| 31 |
|
| 32 |
# out = gr.Textbox()
|
| 33 |
out=gr.Label()
|
|
|
|
| 34 |
btn = gr.Button("Run")
|
| 35 |
btn.click(fn=fonc, inputs=img1, outputs=out)
|
| 36 |
|
|
|
|
| 25 |
|
| 26 |
with gr.Blocks(css="footer {visibility: hidden}") as demo:
|
| 27 |
gr.Markdown("Start typing below and then click **Run** to see the output.")
|
| 28 |
+
gr.HTML("<br>")
|
| 29 |
img1=gr.Image(type='filepath',tool=['editor', 'select'] )
|
| 30 |
+
gr.HTML("<br>")
|
| 31 |
|
| 32 |
# out = gr.Textbox()
|
| 33 |
out=gr.Label()
|
| 34 |
+
gr.HTML("<br>")
|
| 35 |
btn = gr.Button("Run")
|
| 36 |
btn.click(fn=fonc, inputs=img1, outputs=out)
|
| 37 |
|