Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -249,13 +249,11 @@ with gr.Blocks(css=css_styling, title=page_title) as demo:
|
|
249 |
input_yield_strength = gr.Text(label="Enter your target yield strength (MPa)")
|
250 |
with gr.Column():
|
251 |
gr.Markdown("### Your optimal formulation and processing conditions")
|
252 |
-
optimal_parameters = gr.DataFrame(label="Optimal parameters")
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
# output_ys_uncertainty = gr.Text(label="Yield strength uncertainty (%)")
|
258 |
-
# output_ys_interpretation = gr.Plot(label="Yield strength interpretation")
|
259 |
with gr.Row():
|
260 |
gr.Examples([example_inputs], [input_hardness, input_yield_strength])
|
261 |
|
|
|
249 |
input_yield_strength = gr.Text(label="Enter your target yield strength (MPa)")
|
250 |
with gr.Column():
|
251 |
gr.Markdown("### Your optimal formulation and processing conditions")
|
252 |
+
optimal_parameters = gr.DataFrame(label="Optimal parameters", wrap=True)
|
253 |
+
|
254 |
+
gr.Markdown("### Model interpretation")
|
255 |
+
### Fill plot
|
256 |
+
|
|
|
|
|
257 |
with gr.Row():
|
258 |
gr.Examples([example_inputs], [input_hardness, input_yield_strength])
|
259 |
|