snajmark commited on
Commit
a86f0ed
·
1 Parent(s): febc2e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -7
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
- # with gr.Column():
255
- # gr.Markdown("### Your alloy's yield strength (MPa)")
256
- # output_ys = gr.Text(label="Yield Strength (MPa)")
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