rojasnath commited on
Commit
aa923c9
·
verified ·
1 Parent(s): 698a322

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +15 -12
  2. app.py +56 -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,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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= "rojasnath/tourism-package-model", filename="best_model_v1.joblib")
8
+
9
+ #Load the model
10
+ model = joblib.load(model_path)
11
+
12
+ #Streamlit UI for Customer Purchase Prediction
13
+ st.title("Tourism Package Purchase Prediction App")
14
+ st.write("Tourism Package Purchase Prediction App is an internal tool for Visit With Us staff that predicts whether a customer will purchase the new Wellness Tourism Package based on their details.")
15
+ st.write("Kindly enter the customer details to check whether they are likely to purchase the package.")
16
+
17
+ #Collect user input
18
+ Age= st.number_input("Age (customer's age in years)", min_value=18, max_value=120, value=30)
19
+ TypeofContact= st.selectbox("How did the customer contact?", ["Company Invited", "Self Inquiry"])
20
+ CityTier= st.selectbox("Customer's City Tier", ["Tier 1", "Tier 2", "Tier 3"])
21
+ Occupation= st.selectbox("Customer's Occupation", ["Salaried", "Freelancer"])
22
+ Gender= st.selectbox("Gender", ["Male", "Female"])
23
+ NumberOfPersonVisiting= st.number_input("Total number of adult visitors", min_value=1, max_value=20, value=2)
24
+ PreferredPropertyStar= st.number_input("Preferred hotel rating", min_value=3, max_value=5, value=4)
25
+ MaritalStatus= st.selectbox("Marital status", ["Single", "Married", "Divorced"])
26
+ NumberOfTrips= st.number_input("Average number of trips in a year", min_value=0, max_value=15, value=2)
27
+ Passport= st.selectbox("Valid passport holder?", ["Yes", "No"])
28
+ OwnCar= st.selectbox("Is customer a car owner?", ["Yes", "No"])
29
+ NumberOfChildrenVisiting= st.number_input("Number of children below 5 years age", min_value=0, max_value=10, value=2)
30
+ Designation= st.selectbox("Customer's designation in their current organization", ["Executive", "Manager", "Senior Manager", "AVP", "VP"])
31
+ MonthlyIncome= st.number_input("Gross monthly income of the customer", min_value=5000, max_value=50000, value=15000)
32
+ PitchSatisfactionScore= st.number_input("Customer Satisfaction Score (of the sales pitch)", min_value=1, max_value=5, value=5)
33
+ ProductPitched= st.selectbox("Type of product pitched to the customer",["Basic", "Standard", "Deluxe", "Super Deluxe", "King"])
34
+ NumberOfFollowups= st.number_input("Total number of follow-ups by the salesperson", min_value=0, max_value=5, value=2)
35
+ DurationOfPitch= st.number_input("Duration of the sales pitch (in mins)", min_value=5, max_value=50, value=15)
36
+
37
+ #Convert categorical inputs to match model training
38
+ input_data = pd.DataFrame([{
39
+ 'TypeofContact': TypeofContact,
40
+ 'CityTier': CityTier,
41
+ 'Occupation': Occupation,
42
+ 'Gender': Gender,
43
+ 'MaritalStatus': MaritalStatus,
44
+ 'Designation': Designation,
45
+ 'ProductPitched': ProductPitched
46
+ }])
47
+
48
+ #Set the classification threshold
49
+ classification_threshold = 0.45
50
+
51
+ #Make prediction
52
+ if st.button("Predict"):
53
+ prediction_proba = model.predict_proba(input_data)[0, 1]
54
+ prediction = (prediction_proba >= classification_threshold).astype(int)
55
+ result = "purchase" if prediction == 1 else "not purchase"
56
+ st.write(f"Based on the information provided, the customer is likely to {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