Spaces:
Running
Running
File size: 10,644 Bytes
a9187b2 823fb02 7f26aad ea50094 34c68be 12c018b b8f990b 34c68be d561456 a9187b2 05c1b8b b842ab7 05c1b8b 0458506 05c1b8b 0458506 05c1b8b 85822d0 0e06bcd 05c1b8b 0e06bcd 05c1b8b 0e06bcd 05c1b8b ea50094 50b0cef 3442619 823fb02 12c018b b8f990b ec55053 12c018b b8f990b 12c018b b8f990b 12c018b b8f990b 12c018b ec55053 12c018b 6a052fb 823fb02 12c018b 823fb02 6a052fb a9187b2 6a052fb 12c018b b8f990b ec55053 b8f990b f9e0583 b8f990b 6a052fb b8f990b 50b0cef 12c018b 6a052fb f9e0583 6a052fb f9e0583 6a052fb b8f990b 6a052fb b8f990b f9e0583 b8f990b f9e0583 b8f990b f9e0583 b8f990b a9187b2 b8f990b f9e0583 b8f990b 102f58e b8f990b 102f58e 6a052fb 102f58e 48dec84 102f58e 48dec84 102f58e 48dec84 102f58e 48dec84 102f58e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 |
# import requests for interacting with backend
import requests
# import streamlit library for IO
import streamlit as st
# import pandas
import pandas as pd
# ---------------------------------------------------------
# PAGE CONFIG
# ---------------------------------------------------------
st.set_page_config(
page_title="Predictive Maintenenace App",
layout="wide"
)
# ---------------------------------------------------------
# TITLE
# ---------------------------------------------------------
#st.title("🏖️ Predict Engine Maintenance")
#st.write("The Predict Maintenance app is a tool to predict if an Engine needs any maintenance based on provided operating sensor parameters.")
#st.write("Fill in the details below and click **Predict** to see if the Engine needs maintenance to prevent from failure.")
# -----------------------------
# Title & Description
# -----------------------------
st.markdown("""
<style>
.block-container {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
}
</style>
""", unsafe_allow_html=True)
# ---------------------------------------------------------
# TITLE
# ---------------------------------------------------------
st.title("🏖️ Predict Maintenance")
#st.write("The Predict Maintenance app is a tool to predict if an Engine needs any maintenance based on provided operating sensor parameters.")
#st.write("Fill in the details below and click **Check for Maintenance** to see if the Engine needs maintenance to prevent from failure.")
#st.write("Suggested Ranges are based on the Range of Values model trained on.")
st.markdown("""
The Predict Maintenance app is a tool to predict if an engine needs maintenance based on operating sensor parameters.
Fill in the details below and click **Check for Maintenance** to see the prediction.
*Suggested ranges are based on the data distribution used during training.*
""")
def formatted_number_input(title, hint, minval, maxval, defvalue, steps, valformat="%.4f"):
st.markdown('<div style="margin-bottom:4px;">', unsafe_allow_html=True)
#st.markdown(f"**{title}**")
#st.caption(hint)
#decimals=6
#raw = st.text_input(
#label="",
#value=f"{defvalue:.{decimals}f}",
#label_visibility="collapsed"
#)
#user_input = float(raw)
user_input = st.number_input(
label=f"{title} (Suggested Range {hint})",
#min_value=minval,
#max_value=maxval,
value=defvalue,
#step=steps,
format=valformat,
#label_visibility="collapsed"
)
return user_input
st.markdown("""
<style>
/* Card container */
[data-testid="stVerticalBlock"] > [data-testid="stVerticalBlock"] {
background-color: #0f141a;
border: 1px solid #2a2f36;
border-radius: 12px;
padding: 16px;
margin-bottom: 16px;
}
/* Card title spacing */
.card-title {
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 12px;
}
</style>
""", unsafe_allow_html=True)
# ====================================
# Section : Capture Engine Parameters
# ====================================
#st.subheader ("Engine Parameters")
# divide UI into two column layout by defining two columns
# left column is used for input and right for output
col_inputs, col_output = st.columns([3, 1.5])
# update contnent (input) in left input column
with col_inputs:
with st.container():
st.markdown('<div class="card-title">🔧 Engine Parameters</div>', unsafe_allow_html=True)
col_left, col_right = st.columns(2)
# define inputs in left column
with col_left:
rpm = formatted_number_input(
"Engine RPM",
"50 to 2500",
minval=50.0,
maxval=2500.0,
defvalue=735.0,
steps=10.0,
valformat="%.2f"
)
oil_pressure = formatted_number_input(
"Lubricating oil pressure (kPa)",
"0.001 to 10.0",
minval=0.001,
maxval=10.0,
defvalue=3.300000,
steps=0.001,
valformat="%.6f"
)
fuel_pressure = formatted_number_input(
"Fuel Pressure (kPa)",
"0.01 to 25.0",
minval=0.01,
maxval=25.0,
defvalue=6.500000,
steps=0.01,
valformat="%.6f"
)
# define inputs in left column
with col_right:
coolant_pressure = formatted_number_input(
"Coolant Pressure (kPa)",
"0.01 to 10.0",
minval=0.01,
maxval=10.0,
defvalue=2.250000,
steps=0.10,
valformat="%.6f"
)
lub_oil_temp = formatted_number_input(
"Lubricating oil Temperature (°C)",
"50.0 to 100.0",
minval=50.0,
maxval=100.0,
defvalue=75.0,
steps=0.1,
valformat="%.6f"
)
coolant_temp = formatted_number_input(
"Coolant Temperature (°C)",
"50.0 to 200.0",
minval=50.0,
maxval=200.0,
defvalue=75.000000,
steps=0.1,
valformat="%.6f"
)
#st.markdown('</div>', unsafe_allow_html=True)
#st.markdown("---")
#col_btn1, col_btn2, col_btn3 = st.columns([1,2,1])
with col_output:
with st.container():
st.markdown('<div class="card-title">🧠 Prediction Result</div>', unsafe_allow_html=True)
output_placeholder = st.empty()
details_placeholder = st.empty()
# ==========================
# Single Value Prediction
# ==========================
if st.button("Check for Maintenance"):
# extract the data collected into a structure
input_data = {
'Engine_rpm' : float(rpm),
'Lub_oil_pressure' : float(oil_pressure),
'Fuel_pressure' : float(fuel_pressure),
'Coolant_pressure' : float(coolant_pressure),
'lub_oil_temp' : float(lub_oil_temp),
'Coolant_temp' : float(coolant_temp),
}
input_df = pd.DataFrame([input_data])
response = requests.post (
"https://harishsohani-AIMLProjectTestBackEnd.hf.space/v1/EngPredMaintenance",
json=input_data
)
if response.status_code == 200:
## get result as json
result = response.json ()
resp_status = result.get ("status")
if resp_status == "success":
## Get Sales Prediction Value
prediction_from_backend = result.get ("prediction") # Extract only the value
# generate output string
if prediction_from_backend == 1:
output_placeholder.error("⚠️ Engine likely needs maintenance")
else:
output_placeholder.success("✅ Engine operating normally")
details_placeholder.markdown("""
**Model:** XGBoost
**Threshold:** 0.5
**Inference:** Real-time
""")
else:
error_str = result.get ("message")
output_placeholder.error(f"⚠️ {error_str}")
elif response.status_code == 400 or response.status_code == 500: # known errors
## get result as json
result = response.json ()
# get error message
error_str = result.get ("message")
# show error message
output_placeholder.error(f"⚠️ Error processing request- Status Code : {response.status_code}, error : {error_str}")
else:
output_placeholder.error(f"⚠️ Error processing request- Status Code : {response.status_code}")
# ==============================
# Batch Prediction
# ==============================
st.markdown("---")
st.subheader ("Batch Prediction for Engine Maintenance")
file = st.file_uploader ("Upload CSV file", type=["csv"])
if file is not None and st.button("Predict Batch"):
inputfile = {"file": (file.name, file.getvalue(), "text/csv")}
response = requests.post(
"https://harishsohani-AIMLProjectTestBackEnd.hf.space/v1/EngPredMaintenanceForBatch",
files=inputfile
)
if response.status_code == 200:
result = response.json ()
resp_status = result.get ("status")
if resp_status == "success":
## Get Sales Prediction Value
predictions_from_backend = result.get ("predictions") # Extract only the value
# Convert list → DataFrame
result_df = pd.DataFrame({
"Prediction": predictions_from_backend
})
st.dataframe (result_df)
input_df = pd.read_csv(file)
# Ensure lengths match
if len(predictions_from_backend) == len(input_df):
# Add prediction column
input_df["Prediction"] = predictions_from_backend
st.success("Batch prediction completed successfully")
# Show combined dataframe
st.dataframe(input_df, use_container_width=True)
else:
st.error("Prediction count does not match input records")
else:
error_str = result.get ("message")
st.error(error_str)
elif response.status_code == 400 or response.status_code == 500: # known errors
## get result as json
result = response.json ()
error_str = result.get ("message")
st.error (f"Error processing request- Status Code : {response.status_code}, error : {error_str}")
else:
st.error (f"Error processing request- Status Code : {response.status_code}")
|