Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -245,10 +245,10 @@ with gr.Blocks(css=css_styling, title=page_title, theme=osium_theme) as demo:
|
|
245 |
optimal_formula = gr.DataFrame(label="Your optimal alloy formula", wrap=True)
|
246 |
optimal_processing_method = gr.Text(label="Processing method")
|
247 |
gr.Markdown("### Additional information about your optimal alloy")
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
|
253 |
with gr.Row():
|
254 |
gr.Examples([example_inputs], [input_hardness, input_yield_strength, ['Al', 'Fe']])
|
|
|
245 |
optimal_formula = gr.DataFrame(label="Your optimal alloy formula", wrap=True)
|
246 |
optimal_processing_method = gr.Text(label="Processing method")
|
247 |
gr.Markdown("### Additional information about your optimal alloy")
|
248 |
+
density = gr.Text(label="Density (g/cm3)")
|
249 |
+
young_modulus = gr.Text(label = "Young modulus (GPa)")
|
250 |
+
microstructure = gr.Text(label="Microstructure (BCC/FCC/Other)")
|
251 |
+
phase = gr.Text(label="Number of phases (S/M)")
|
252 |
|
253 |
with gr.Row():
|
254 |
gr.Examples([example_inputs], [input_hardness, input_yield_strength, ['Al', 'Fe']])
|