Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ model = joblib.load(model_path)
|
|
| 13 |
st.title("Engine Predictive Maintenance Prediction")
|
| 14 |
st.write("Fill the engine details below to predict if they'll need a maintenance")
|
| 15 |
|
| 16 |
-
# Collect user input
|
| 17 |
Engine_RPM = st.number_input("Engine_RPM", min_value=1, max_value=10000, value=100,step=1)
|
| 18 |
Lub_Oil_Pressure = st.number_input("Lub_Oil_Pressure", min_value=0.0, value=1.0,step=0.000001,format="%.6f")
|
| 19 |
Fuel_Pressure = st.number_input("Fuel_Pressure", min_value=0.0, value=1.0,step=0.000001,format="%.6f")
|
|
|
|
| 13 |
st.title("Engine Predictive Maintenance Prediction")
|
| 14 |
st.write("Fill the engine details below to predict if they'll need a maintenance")
|
| 15 |
|
| 16 |
+
# Collect user input
|
| 17 |
Engine_RPM = st.number_input("Engine_RPM", min_value=1, max_value=10000, value=100,step=1)
|
| 18 |
Lub_Oil_Pressure = st.number_input("Lub_Oil_Pressure", min_value=0.0, value=1.0,step=0.000001,format="%.6f")
|
| 19 |
Fuel_Pressure = st.number_input("Fuel_Pressure", min_value=0.0, value=1.0,step=0.000001,format="%.6f")
|