mkaramb commited on
Commit
cf79285
·
verified ·
1 Parent(s): 6d7a08e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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