Update app.py
Browse files
app.py
CHANGED
@@ -103,9 +103,9 @@ with gr.Blocks() as interface:
|
|
103 |
with gr.Row():
|
104 |
file_input = gr.File(label="Upload ZIP File")
|
105 |
with gr.Row():
|
106 |
-
html_output = gr.HTML()
|
107 |
with gr.Row():
|
108 |
-
file_output = gr.File()
|
109 |
|
110 |
file_input.change(process_images, inputs=file_input, outputs=[html_output, file_output])
|
111 |
|
|
|
103 |
with gr.Row():
|
104 |
file_input = gr.File(label="Upload ZIP File")
|
105 |
with gr.Row():
|
106 |
+
html_output = gr.HTML(label="Extracted Text From Your Herbaria Images")
|
107 |
with gr.Row():
|
108 |
+
file_output = gr.File(label="Download this file to receive the extracted labels from the images.")
|
109 |
|
110 |
file_input.change(process_images, inputs=file_input, outputs=[html_output, file_output])
|
111 |
|