sudha1726 commited on
Commit
7818919
·
verified ·
1 Parent(s): 9db24ca

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +15 -12
  2. app.py +76 -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,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ from huggingface_hub import hf_hub_download
4
+ import joblib
5
+ import os
6
+ from huggingface_hub import login, HfApi
7
+
8
+ # Download and load the predictive maintenance model
9
+ HF_TOKEN = os.getenv("HF_TOKEN")
10
+ if not HF_TOKEN:
11
+ st.error("HF_TOKEN is not set. Cannot download model.")
12
+ else:
13
+ try:
14
+ model_path = hf_hub_download(repo_id="sudha1726/predictive_maintainance_model", filename="best_predictive_maintainance_model_v1.joblib", token=HF_TOKEN)
15
+ model = joblib.load(model_path)
16
+ st.success("Predictive Maintenance Model loaded successfully!")
17
+ except Exception as e:
18
+ st.error(f"Error loading model from Hugging Face: {e}")
19
+ model = None
20
+
21
+ # Streamlit UI for Predictive Maintenance
22
+ st.title("Engine Predictive Maintenance App")
23
+ st.write("""
24
+ This application predicts whether an engine requires maintenance based on real-time sensor data.
25
+ Please enter the engine sensor readings below to get a prediction.
26
+ """)
27
+
28
+ if model:
29
+ # User input fields for engine sensor data
30
+ engine_rpm = st.number_input("Engine RPM", min_value=0, max_value=3000, value=700)
31
+ lub_oil_pressure = st.number_input("Lub Oil Pressure (bar/kPa)", min_value=0.0, max_value=10.0, value=3.0, format="%.2f")
32
+ fuel_pressure = st.number_input("Fuel Pressure (bar/kPa)", min_value=0.0, max_value=30.0, value=7.0, format="%.2f")
33
+ coolant_pressure = st.number_input("Coolant Pressure (bar/kPa)", min_value=0.0, max_value=10.0, value=2.5, format="%.2f")
34
+ lub_oil_temp = st.number_input("Lub Oil Temperature (°C)", min_value=0.0, max_value=100.0, value=75.0, format="%.2f")
35
+ coolant_temp = st.number_input("Coolant Temperature (°C)", min_value=0.0, max_value=200.0, value=80.0, format="%.2f")
36
+
37
+ # Assemble input data into DataFrame
38
+ input_data = pd.DataFrame([{
39
+ 'Engine rpm': engine_rpm,
40
+ 'Lub oil pressure': lub_oil_pressure,
41
+ 'Fuel pressure': fuel_pressure,
42
+ 'Coolant pressure': coolant_pressure,
43
+ 'lub oil temp': lub_oil_temp,
44
+ 'Coolant temp': coolant_temp
45
+ }])
46
+
47
+ # Prediction
48
+ if st.button("Predict Engine Condition"):
49
+ prediction = model.predict(input_data)[0]
50
+ result = "requires maintenance (Faulty)" if prediction == 1 else "does not require maintenance (Normal)"
51
+ st.subheader("Prediction Result:")
52
+ st.success(f"The model predicts the engine **{result}**")
53
+
54
+ st.write("---")
55
+ st.subheader("Upload Deployment to Hugging Face Space")
56
+
57
+ if st.button("Upload Deployment Files"):
58
+ if not HF_TOKEN:
59
+ st.error("HF_TOKEN is not set. Cannot upload files.")
60
+ else:
61
+ login(token=HF_TOKEN)
62
+ api = HfApi()
63
+ repo_id = "sudha1726/predictive-maintainanace" # your Space repo
64
+ folder_path = "predictive_maintainance_project/deployment"
65
+
66
+ try:
67
+ api.upload_folder(
68
+ folder_path=folder_path,
69
+ repo_id=repo_id,
70
+ repo_type="space",
71
+ path_in_repo=""
72
+ )
73
+ st.success("Deployment files uploaded successfully to Hugging Face Space!")
74
+ except Exception as e:
75
+ st.error(f"Error uploading deployment files: {e}")
76
+
requirements.txt CHANGED
@@ -1,3 +1,7 @@
1
- altair
2
- pandas
3
- streamlit
 
 
 
 
 
1
+ pandas==2.2.2
2
+ huggingface_hub==0.32.6
3
+ streamlit==1.43.2
4
+ joblib==1.5.1
5
+ scikit-learn==1.6.1
6
+ xgboost==2.1.4
7
+ mlflow==3.0.1