Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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.
|
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.
|
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():
|