Update app.py
Browse filesRemove label argument from button, because it's not longe exist
app.py
CHANGED
|
@@ -189,7 +189,7 @@ with gr.Blocks() as demo:
|
|
| 189 |
with gr.Column():
|
| 190 |
gr.Markdown("## Inputs")
|
| 191 |
image = gr.Image(type="pil",label="Input")
|
| 192 |
-
submit_button = gr.Button(
|
| 193 |
with gr.Column():
|
| 194 |
gr.Markdown("## Outputs")
|
| 195 |
with gr.Tab('Image of damages'):
|
|
|
|
| 189 |
with gr.Column():
|
| 190 |
gr.Markdown("## Inputs")
|
| 191 |
image = gr.Image(type="pil",label="Input")
|
| 192 |
+
submit_button = gr.Button("Submit")
|
| 193 |
with gr.Column():
|
| 194 |
gr.Markdown("## Outputs")
|
| 195 |
with gr.Tab('Image of damages'):
|