bndl commited on
Commit
5f6d56a
·
1 Parent(s): a917498

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -467,10 +467,10 @@ with gr.Blocks(css=css_styling, title=page_title, theme=osium_theme) as demo:
467
  with gr.Row():
468
  with gr.Column():
469
  gr.Markdown("### The target antimicrobial activity of your textile coating")
470
- antimicrobial_activity_target = gr.Text(label="Enter the minimum acceptable antimicrobial activity for your textile coating")
471
  gr.Markdown("### Your constraints")
472
  substrate = gr.Dropdown(label="Your substrate", choices=[c for c in test_data_columns if c.startswith("Substrate")])
473
- num_washing_cycles = gr.Text(label="Your number of washing cycles")
474
  microorganism = gr.Dropdown(label="Microorganism", choices=[c for c in test_data_columns if c.startswith("Microorganism")])
475
 
476
  with gr.Column():
 
467
  with gr.Row():
468
  with gr.Column():
469
  gr.Markdown("### The target antimicrobial activity of your textile coating")
470
+ antimicrobial_activity_target = gr.Number(label="Enter the minimum acceptable antimicrobial activity for your textile coating")
471
  gr.Markdown("### Your constraints")
472
  substrate = gr.Dropdown(label="Your substrate", choices=[c for c in test_data_columns if c.startswith("Substrate")])
473
+ num_washing_cycles = gr.Number(label="Your number of washing cycles")
474
  microorganism = gr.Dropdown(label="Microorganism", choices=[c for c in test_data_columns if c.startswith("Microorganism")])
475
 
476
  with gr.Column():