CesarLeblanc commited on
Commit
f30d0ea
·
1 Parent(s): 53e71ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -79,8 +79,10 @@ def masking(text):
79
  return text, image
80
 
81
  with gr.Blocks() as demo:
82
- gr.Markdown("Classify vegetation plots or find the missing species.")
 
83
  with gr.Tab("Vegetation plot classification"):
 
84
  with gr.Row():
85
  with gr.Column():
86
  species = gr.Textbox(lines=2, label="Species", placeholder="Enter a list of comma-separated binomial names here.")
@@ -92,6 +94,7 @@ with gr.Blocks() as demo:
92
  text_button = gr.Button("Classify")
93
 
94
  with gr.Tab("Missing species finding"):
 
95
  with gr.Row():
96
  species_2 = gr.Textbox(lines=2, label="Species", placeholder="Enter a list of comma-separated binomial names here.")
97
  with gr.Column():
 
79
  return text, image
80
 
81
  with gr.Blocks() as demo:
82
+ gr.Markdown("""# Pl@ntBERT""")
83
+
84
  with gr.Tab("Vegetation plot classification"):
85
+ gr.Markdown("""Classify vegetation plots!""")
86
  with gr.Row():
87
  with gr.Column():
88
  species = gr.Textbox(lines=2, label="Species", placeholder="Enter a list of comma-separated binomial names here.")
 
94
  text_button = gr.Button("Classify")
95
 
96
  with gr.Tab("Missing species finding"):
97
+ gr.Markdown("""Find the missing species!""")
98
  with gr.Row():
99
  species_2 = gr.Textbox(lines=2, label="Species", placeholder="Enter a list of comma-separated binomial names here.")
100
  with gr.Column():