Update app.py
Browse files
app.py
CHANGED
|
@@ -48,11 +48,11 @@ def predict_fatigue_crack_growth_rate(geometric_factor, flange_width, beam_width
|
|
| 48 |
|
| 49 |
# Create a Gradio interface
|
| 50 |
iface = gr.Interface(fn=predict_fatigue_crack_growth_rate,
|
| 51 |
-
inputs=[gr.Number(label="Geometric Factor")
|
| 52 |
gr.Number(label="Column Width"),
|
| 53 |
gr.Number(label="Beam Width"),
|
| 54 |
gr.Number(label="Beam - h"),
|
| 55 |
-
gr.Number(label="Column - tw"),
|
| 56 |
outputs=gr.Textbox(label="Prediction"),
|
| 57 |
title="Fatigue Crack Growth Rate Predictor",
|
| 58 |
description="Enter the values for Geometric Factor, Column Width, Beam Width, Beam - h, and COLUMN - tw to predict the Fatigue Crack Growth Rate.")
|
|
|
|
| 48 |
|
| 49 |
# Create a Gradio interface
|
| 50 |
iface = gr.Interface(fn=predict_fatigue_crack_growth_rate,
|
| 51 |
+
inputs=[gr.Number(label="Geometric Factor"),
|
| 52 |
gr.Number(label="Column Width"),
|
| 53 |
gr.Number(label="Beam Width"),
|
| 54 |
gr.Number(label="Beam - h"),
|
| 55 |
+
gr.Number(label="Column - tw")],
|
| 56 |
outputs=gr.Textbox(label="Prediction"),
|
| 57 |
title="Fatigue Crack Growth Rate Predictor",
|
| 58 |
description="Enter the values for Geometric Factor, Column Width, Beam Width, Beam - h, and COLUMN - tw to predict the Fatigue Crack Growth Rate.")
|