| import streamlit as st |
| import pandas as pd |
| from huggingface_hub import hf_hub_download |
| import joblib |
|
|
| |
| model_path = hf_hub_download(repo_id="nv185001/pred-model", filename="best_engine_failure_predictor_model.joblib") |
| |
| model = joblib.load(model_path) |
|
|
| |
| st.title("Engine Failure Prediction App") |
| st.write("The Engine Failure Prediction App is an internal tool to predict whether engine would fail due to current vital parameters.") |
| st.write("Kindly enter different parameters of engine to check whether they are likely to fail or not") |
|
|
| Engine_rpm = st.number_input("Engine RPM", min_value=0.0, format="%.9f") |
| Lub_oil_pressure = st.number_input("Lub Oil Pressure", min_value=0.0, format="%.9f") |
| Fuel_pressure = st.number_input("Fuel Pressure", min_value=0.0, format="%.9f") |
| Coolant_pressure = st.number_input("Coolant Pressure", min_value=0.0, format="%.9f") |
| lub_oil_temp = st.number_input("Lub Oil Temperature", min_value=0.0, format="%.9f") |
| Coolant_temp = st.number_input("Coolant Temperature", min_value=0.0, format="%.9f") |
|
|
| input_data = pd.DataFrame([{ |
| 'Engine_rpm': Engine_rpm, |
| 'Lub_oil_pressure': Lub_oil_pressure, |
| 'Fuel_pressure': Fuel_pressure, |
| 'Coolant_pressure': Coolant_pressure, |
| 'lub_oil_temp': lub_oil_temp, |
| 'Coolant_temp': Coolant_temp |
| }]) |
|
|
| |
| classification_threshold = 0.45 |
|
|
| |
| if st.button("Predict"): |
| prediction_proba = model.predict_proba(input_data)[0, 1] |
| prediction = (prediction_proba >= classification_threshold).astype(int) |
| result = "to shutdown soon, due to inconsistent paramters" if prediction == 1 else "to work fine" |
| st.write(f"Based on the information provided, the machine is likely {result}.") |