ramanub commited on
Commit
a2f354c
·
verified ·
1 Parent(s): e4ccac5

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +15 -12
  2. app.py +75 -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,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="best_tourism_prediction_model_v1.joblib", filename="best_tourism_prediction_model_v1.joblib")
8
+ model = joblib.load(model_path)
9
+
10
+ # Streamlit UI for Machine Failure Prediction
11
+ st.title("Tour Pack Purchase Prediction App")
12
+ st.write("""
13
+ This application predicts whether a customer will purchase the newly introduced Wellness Tourism Package or not.
14
+ Please enter the customer details below to get a prediction.
15
+ """)
16
+
17
+ # User input
18
+ st.subheader("Customer Information")
19
+
20
+ Age = st.number_input("Age", min_value=18, max_value=100, value=35, step=1)
21
+ Gender = st.selectbox("Gender", ["Male", "Female"])
22
+ MaritalStatus = st.selectbox("Marital Status", ["Single", "Married", "Unmarried", "Divorced"])
23
+ Occupation = st.selectbox("Occupation", ["Salaried", "Small Business", "Large Business", "Free lancer"])
24
+ MonthlyIncome = st.number_input("Monthly Income ($)", min_value=0, max_value=1000000, value=50000, step=1000)
25
+ Designation = st.text_input("Designation", ["Executive", "Manager", "Senior Manager", "AVP", "VP"])
26
+
27
+ st.subheader("Location & Family Details")
28
+
29
+ CityTier = st.selectbox("City Tier", [1, 2, 3])
30
+ NumberOfPersonVisiting = st.number_input("Number of Persons Visiting", min_value=1, max_value=10, value=2, step=1)
31
+ NumberOfChildrenVisiting = st.number_input("Number of Children Visiting", min_value=0, max_value=5, value=0, step=1)
32
+ OwnCar = st.number_input("Owns a Car", min_value=0, max_value=1, value=0, step=1)
33
+
34
+ st.subheader("Travel History")
35
+
36
+ NumberOfTrips = st.number_input("Number of Trips (Annual)", min_value=0, max_value=50, value=3, step=1)
37
+ Passport = st.number_input("Passport", min_value=0, max_value=1, value=0, step=1)
38
+ PreferredPropertyStar = st.slider("Preferred Hotel Star Rating", min_value=3, max_value=5, value=3, step=1)
39
+
40
+ st.subheader("Sales Interaction Details")
41
+
42
+ TypeofContact = st.selectbox("Type of Contact", ["Company Invited", "Self Inquiry"])
43
+ ProductPitched = st.selectbox("Product Pitched", ["Basic", "Standard", "Deluxe", "Super Deluxe", "King"])
44
+ DurationOfPitch = st.number_input("Duration of Pitch (minutes)", min_value=1, max_value=150, value=15, step=1)
45
+ NumberOfFollowups = st.number_input("Number of Follow-ups", min_value=1, max_value=20, value=3, step=1)
46
+ PitchSatisfactionScore = st.slider("Pitch Satisfaction Score", min_value=1, max_value=5, value=3, step=1)
47
+
48
+ # Assemble input into DataFrame
49
+ input_data = pd.DataFrame([{
50
+ 'Age': Age,
51
+ 'TypeofContact': TypeofContact,
52
+ 'CityTier': CityTier,
53
+ 'DurationOfPitch': DurationOfPitch,
54
+ 'Occupation': Occupation,
55
+ 'Gender': Gender,
56
+ 'NumberOfPersonVisiting': NumberOfPersonVisiting,
57
+ 'NumberOfFollowups': NumberOfFollowups,
58
+ 'ProductPitched': ProductPitched,
59
+ 'PreferredPropertyStar': PreferredPropertyStar,
60
+ 'MaritalStatus': MaritalStatus,
61
+ 'NumberOfTrips': NumberOfTrips,
62
+ 'Passport': Passport,
63
+ 'PitchSatisfactionScore': PitchSatisfactionScore,
64
+ 'OwnCar': OwnCar,
65
+ 'NumberOfChildrenVisiting': NumberOfChildrenVisiting,
66
+ 'Designation': Designation,
67
+ 'MonthlyIncome': MonthlyIncome
68
+ }])
69
+
70
+
71
+ if st.button("Predict Failure"):
72
+ prediction = model.predict(input_data)[0]
73
+ result = "Tour Pack Taken" if prediction == 1 else "Tour Pack Not Taken"
74
+ st.subheader("Prediction Result:")
75
+ 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