cbendale10 commited on
Commit
c1929b2
·
verified ·
1 Parent(s): 22a6466

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +15 -12
  2. app.py +60 -0
  3. requirements.txt +7 -3
Dockerfile CHANGED
@@ -1,20 +1,23 @@
1
- FROM python:3.13.5-slim
 
2
 
 
3
  WORKDIR /app
4
 
5
- RUN apt-get update && apt-get install -y \
6
- build-essential \
7
- curl \
8
- git \
9
- && rm -rf /var/lib/apt/lists/*
10
-
11
- COPY requirements.txt ./
12
- COPY src/ ./src/
13
 
 
14
  RUN pip3 install -r requirements.txt
15
 
16
- EXPOSE 8501
 
 
 
 
 
17
 
18
- HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
19
 
20
- ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]
 
 
1
+ # Use a minimal base image with Python 3.9 installed
2
+ FROM python:3.9
3
 
4
+ # Set the working directory inside the container to /app
5
  WORKDIR /app
6
 
7
+ # Copy all files from the current directory on the host to the container's /app directory
8
+ COPY . .
 
 
 
 
 
 
9
 
10
+ # Install Python dependencies listed in requirements.txt
11
  RUN pip3 install -r requirements.txt
12
 
13
+ RUN useradd -m -u 1000 user
14
+ USER user
15
+ ENV HOME=/home/user \
16
+ PATH=/home/user/.local/bin:$PATH
17
+
18
+ WORKDIR $HOME/app
19
 
20
+ COPY --chown=user . $HOME/app
21
 
22
+ # Define the command to run the Streamlit app on port "8501" and make it accessible externally
23
+ CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]
app.py ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ import streamlit as st
3
+ import joblib
4
+ from huggingface_hub import hf_hub_download
5
+
6
+ st.set_page_config(page_title="Engine Predictive Maintenance", layout="centered")
7
+
8
+ st.title("🔧 Engine Predictive Maintenance – Fault Prediction")
9
+ st.write("Enter live engine sensor readings to predict whether the engine is **Normal (0)** or **Faulty (1)**.")
10
+
11
+ # ---- CONFIG ----
12
+ MODEL_REPO_ID = "cbendale10/Capstone-Predictive-Maintenance-model" # <-- HF model repo
13
+ MODEL_FILENAME = "best_predictive_maintenance_model_v1.joblib" # best model uploaded
14
+
15
+ @st.cache_resource
16
+ def load_model():
17
+ model_path = hf_hub_download(repo_id=MODEL_REPO_ID, filename=MODEL_FILENAME)
18
+ return joblib.load(model_path)
19
+
20
+ model = load_model()
21
+
22
+ # ---- INPUTS ----
23
+ st.subheader("Sensor Inputs")
24
+
25
+ engine_rpm = st.number_input("Engine RPM", min_value=0.0, value=750.0, step=1.0)
26
+ lub_oil_pressure = st.number_input("Lub Oil Pressure", min_value=0.0, value=3.1, step=0.01)
27
+ fuel_pressure = st.number_input("Fuel Pressure", min_value=0.0, value=6.2, step=0.01)
28
+ coolant_pressure = st.number_input("Coolant Pressure", min_value=0.0, value=2.1, step=0.01)
29
+ lub_oil_temp = st.number_input("Lub Oil Temperature (°C)", min_value=0.0, value=76.8, step=0.01)
30
+ coolant_temp = st.number_input("Coolant Temperature (°C)", min_value=0.0, value=78.3, step=0.01)
31
+
32
+ # ---- DATAFRAME (required by rubric) ----
33
+ input_df = pd.DataFrame([{
34
+ "Engine rpm": engine_rpm,
35
+ "Lub oil pressure": lub_oil_pressure,
36
+ "Fuel pressure": fuel_pressure,
37
+ "Coolant pressure": coolant_pressure,
38
+ "lub oil temp": lub_oil_temp,
39
+ "Coolant temp": coolant_temp
40
+ }])
41
+
42
+ st.write("### Input DataFrame")
43
+ st.dataframe(input_df)
44
+
45
+ if st.button("Predict Engine Condition"):
46
+ pred = model.predict(input_df)[0]
47
+ proba = None
48
+ if hasattr(model, "predict_proba"):
49
+ proba = model.predict_proba(input_df)[0, 1]
50
+
51
+ st.write("### Prediction Result")
52
+ if int(pred) == 1:
53
+ st.error("⚠️ Engine Condition: **Faulty (1)** — Maintenance Recommended")
54
+ else:
55
+ st.success("✅ Engine Condition: **Normal (0)** — No Maintenance Required")
56
+
57
+ if proba is not None:
58
+ st.info(f"Fault probability: **{proba:.2f}**")
59
+
60
+ st.caption("Model loaded from Hugging Face Model Hub. Built for Capstone Predictive Maintenance.")
requirements.txt CHANGED
@@ -1,3 +1,7 @@
1
- altair
2
- pandas
3
- streamlit
 
 
 
 
 
1
+ pandas==2.2.2
2
+ numpy==1.26.4
3
+ scikit-learn==1.6.0
4
+ joblib==1.5.1
5
+ huggingface_hub==0.32.6
6
+ streamlit==1.43.2
7
+ mlflow==3.0.1