jarpan03 commited on
Commit
c9669f0
·
verified ·
1 Parent(s): fe43622

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +15 -12
  2. app.py +68 -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,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ from huggingface_hub import hf_hub_download
4
+ import joblib
5
+
6
+ # Download the model from the Model Hub
7
+ model_path = hf_hub_download(repo_id="jarpan03/engine-predictive-maintenance-model", filename="best_engine_maintenance_model_v1.joblib")
8
+
9
+ # Load the model
10
+ model = joblib.load(model_path)
11
+
12
+ # Streamlit UI for Customer Churn Prediction
13
+ st.title("Tourism Package Prediction")
14
+ st.write("Fill the customer details below to predict if they'll purchase a travel package")
15
+
16
+ # Collect user input
17
+ Age = st.slider("Age", 18, 70, 30)
18
+ TypeofContact = st.selectbox("Type of Contact", ["Self Enquiry", "Company Invited"])
19
+ CityTier = st.selectbox("City Tier", [1, 2, 3])
20
+ DurationOfPitch = st.slider("Duration of Pitch (mins)", 0, 100, 15)
21
+ Occupation = st.selectbox("Occupation", ["Salaried", "Small Business", "Large Business", "Free Lancer"])
22
+ Gender = st.selectbox("Gender", ["Male", "Female", "Others"])
23
+ NumberOfPersonVisiting = st.slider("Number of Persons Visiting", 1, 5, 2)
24
+ NumberOfFollowups = st.slider("Number of Follow-ups", 1, 10, 3)
25
+ ProductPitched = st.selectbox("Product Pitched", ["Basic", "Standard", "Deluxe", "Super Deluxe", "King"])
26
+ PreferredPropertyStar = st.selectbox("Preferred Property Star", [1, 2, 3, 4, 5])
27
+ MaritalStatus = st.selectbox("Marital Status", ["Married", "Single", "Divorced", "Unmarried"])
28
+ NumberOfTrips = st.slider("Number of Trips", 1, 20, 3)
29
+ Passport = st.selectbox("Has Passport?", ["Yes", "No"])
30
+ PitchSatisfactionScore = st.slider("Pitch Satisfaction Score", 1, 5, 3)
31
+ OwnCar = st.selectbox("Owns a Car?", ["Yes", "No"])
32
+ NumberOfChildrenVisiting = st.slider("Number of Children Visited", 0, 5, 1)
33
+ Designation = st.selectbox("Designation", ["Executive", "Manager", "AVP", "VP", "Sr. Manager"])
34
+ MonthlyIncome = st.number_input("Monthly Income", min_value=1000.0, value=30000.0)
35
+
36
+ # ----------------------------
37
+ # Prepare input data
38
+ # ----------------------------
39
+ input_data = pd.DataFrame([{
40
+ 'Age': Age,
41
+ 'TypeofContact': TypeofContact,
42
+ 'CityTier': CityTier,
43
+ 'DurationOfPitch': DurationOfPitch,
44
+ 'Occupation': Occupation,
45
+ 'Gender': Gender,
46
+ 'NumberOfPersonVisiting': NumberOfPersonVisiting,
47
+ 'NumberOfFollowups': NumberOfFollowups,
48
+ 'ProductPitched': ProductPitched,
49
+ 'PreferredPropertyStar': PreferredPropertyStar,
50
+ 'MaritalStatus': MaritalStatus,
51
+ 'NumberOfTrips': NumberOfTrips,
52
+ 'Passport': 1 if Passport == "Yes" else 0,
53
+ 'PitchSatisfactionScore': PitchSatisfactionScore,
54
+ 'OwnCar': 1 if OwnCar == "Yes" else 0,
55
+ 'NumberOfChildrenVisitings': NumberOfChildrenVisiting,
56
+ 'Designation': Designation,
57
+ 'MonthlyIncome': MonthlyIncome
58
+ }])
59
+
60
+ # Set the classification threshold
61
+ classification_threshold = 0.45
62
+
63
+ # Predict button
64
+ if st.button("Predict"):
65
+ prob = model.predict_proba(input_data)[0,1]
66
+ pred = int(prob >= classification_threshold)
67
+ result = "will purchase the travel package" if pred == 1 else "is unlikely to purchase"
68
+ st.write(f"Prediction: Customer {result}")
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.0
6
+ xgboost==2.1.4
7
+ mlflow==3.0.1