CesarLeblanc commited on
Commit
3cb6c3b
1 Parent(s): ca9ec8b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -89,10 +89,11 @@ with gr.Blocks() as demo:
89
  text_output_2 = gr.Image()
90
  text_button = gr.Button("Classify")
91
  with gr.Tab("Missing species finding"):
92
- species_2 = gr.Textbox(lines=2, label="Species", placeholder="Enter a list of comma-separated binomial names here.")
93
  with gr.Row():
94
- image_output_1 = gr.Textbox()
95
- image_output_2 = gr.Image()
 
 
96
  image_button = gr.Button("Find")
97
 
98
  text_button.click(classification, inputs=[species, typology, confidence], outputs=[text_output_1, text_output_2])
 
89
  text_output_2 = gr.Image()
90
  text_button = gr.Button("Classify")
91
  with gr.Tab("Missing species finding"):
 
92
  with gr.Row():
93
+ species_2 = gr.Textbox(lines=2, label="Species", placeholder="Enter a list of comma-separated binomial names here.")
94
+ with gr.Column():
95
+ image_output_1 = gr.Textbox()
96
+ image_output_2 = gr.Image()
97
  image_button = gr.Button("Find")
98
 
99
  text_button.click(classification, inputs=[species, typology, confidence], outputs=[text_output_1, text_output_2])