absethi1894 commited on
Commit
d17b5ff
·
verified ·
1 Parent(s): e74d22c

Update deployment files via CI/CD

Browse files
Files changed (3) hide show
  1. Dockerfile +15 -12
  2. app.py +77 -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,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ from huggingface_hub import hf_hub_download
4
+ import joblib
5
+
6
+ # -----------------------------
7
+ # Load the trained tourism model
8
+ # -----------------------------
9
+ model_path = hf_hub_download(
10
+ repo_id="absethi1894/churn-model",
11
+ filename="best_tourism_model_v1.joblib"
12
+ )
13
+ model = joblib.load(model_path)
14
+
15
+ # -----------------------------
16
+ # Streamlit App UI
17
+ # -----------------------------
18
+ st.title("Tourism Product Purchase Prediction")
19
+ st.write("""
20
+ This application predicts the likelihood of a customer purchasing the tourism package
21
+ based on their profile and travel-related information.
22
+ Please provide the details below:
23
+ """)
24
+
25
+ # -----------------------------
26
+ # User Inputs
27
+ # -----------------------------
28
+ gender = st.selectbox("Gender", ["Male", "Female"])
29
+ marital_status = st.selectbox("Marital Status", ["Married", "Single", "Divorced"])
30
+ age = st.number_input("Age", min_value=18, max_value=80, value=30)
31
+ designation = st.selectbox("Designation", ["Executive", "Manager", "Senior Manager", "AVP", "VP"])
32
+ occupation = st.selectbox("Occupation", ["Salaried", "Small Business", "Large Business", "Free Lancer"])
33
+ monthly_income = st.number_input("Monthly Income (INR)", min_value=10000, max_value=500000, value=50000, step=1000)
34
+
35
+ num_trips = st.number_input("Number of Trips", min_value=0, max_value=50, value=1)
36
+ num_person_visiting = st.number_input("Number of Persons Visiting", min_value=1, max_value=10, value=2)
37
+ num_children = st.number_input("Number of Children Visiting", min_value=0, max_value=5, value=0)
38
+
39
+ passport = st.selectbox("Passport", [0, 1])
40
+ own_car = st.selectbox("Own Car", [0, 1])
41
+
42
+ duration_of_pitch = st.number_input("Duration of Pitch (minutes)", min_value=0, max_value=100, value=15)
43
+ num_followups = st.number_input("Number of Followups", min_value=0, max_value=10, value=1)
44
+ preferred_star = st.selectbox("Preferred Property Star", [3, 4, 5])
45
+ product_pitched = st.selectbox("Product Pitched", ["Basic", "Deluxe", "Standard", "Super Deluxe", "King"])
46
+ pitch_score = st.number_input("Pitch Satisfaction Score", min_value=1, max_value=5, value=3)
47
+
48
+ # -----------------------------
49
+ # Create DataFrame for prediction
50
+ # -----------------------------
51
+ input_data = pd.DataFrame([{
52
+ 'Gender': gender,
53
+ 'MaritalStatus': marital_status,
54
+ 'Age': age,
55
+ 'Designation': designation,
56
+ 'Occupation': occupation,
57
+ 'MonthlyIncome': monthly_income,
58
+ 'NumberOfTrips': num_trips,
59
+ 'NumberOfPersonVisiting': num_person_visiting,
60
+ 'NumberOfChildrenVisiting': num_children,
61
+ 'Passport': passport,
62
+ 'OwnCar': own_car,
63
+ 'DurationOfPitch': duration_of_pitch,
64
+ 'NumberOfFollowups': num_followups,
65
+ 'PreferredPropertyStar': preferred_star,
66
+ 'ProductPitched': product_pitched,
67
+ 'PitchSatisfactionScore': pitch_score
68
+ }])
69
+
70
+ # -----------------------------
71
+ # Prediction
72
+ # -----------------------------
73
+ if st.button("Predict Purchase"):
74
+ prediction = model.predict(input_data)[0]
75
+ result = "Will Purchase Package ✅" if prediction == 1 else "Will Not Purchase Package ❌"
76
+ st.subheader("Prediction Result:")
77
+ st.success(f"The model predicts: **{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