sindhoorasuresh commited on
Commit
290bb34
·
verified ·
1 Parent(s): 1387f9e

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +23 -0
  2. app.py +41 -0
  3. requirements.txt +7 -0
Dockerfile ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ from huggingface_hub import hf_hub_download
4
+ import joblib
5
+
6
+ # Download and load the model
7
+ model_path = hf_hub_download(repo_id="sindhoorasuresh/ML-Project", filename="best_engine_failure_model_v1.joblib")
8
+ model = joblib.load(model_path)
9
+
10
+
11
+ # Streamlit UI for Machine Failure Prediction
12
+ st.title("Engine Failure Prediction App")
13
+ st.write("""
14
+ This application predicts the likelihood of a machine failing based on its operational parameters.
15
+ Please enter the sensor and configuration data below to get a prediction.
16
+ """)
17
+
18
+ # User input
19
+ engine_rpm = st.number_input("Engine rpm)", min_value=250.0, max_value=400.0, value=298.0, step=0.1)
20
+ lub_oil_pres = st.number_input("Lub oil pressure", min_value=250.0, max_value=500.0, value=324.0, step=0.1)
21
+ fuel_pres= st.number_input("Fuel pressure", min_value=0, max_value=3000, value=1400)
22
+ coolant_pres = st.number_input("Coolant pressure", min_value=0.0, max_value=100.0, value=40.0, step=0.1)
23
+ lub_oil_temp = st.number_input("Lub oil temp", min_value=0, max_value=300, value=10)
24
+ coolant_temp = st.number_input("Coolant temp", min_value=0, max_value=300, value=10)
25
+
26
+ # Assemble input into DataFrame
27
+ input_data = pd.DataFrame([{
28
+ 'Engine rpm': engine_rpm,
29
+ 'Lub oil pressure': lub_oil_pres,
30
+ 'Fuel pressure': fuel_pres,
31
+ 'Coolant pressure': coolant_pres,
32
+ 'Lub oil temp': lub_oil_temp,
33
+ 'Coolant temp': coolant_temp
34
+ }])
35
+
36
+
37
+ if st.button("Predict Failure"):
38
+ prediction = model.predict(input_data)[0]
39
+ result = "Engine Failure" if prediction == 1 else "No Failure"
40
+ st.subheader("Prediction Result:")
41
+ st.success(f"The model predicts: **{result}**")
requirements.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
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.0
6
+ xgboost==2.1.4
7
+ mlflow==3.0.1