Upload folder using huggingface_hub
Browse files- Dockerfile +15 -12
- app.py +77 -0
- requirements.txt +7 -3
Dockerfile
CHANGED
|
@@ -1,20 +1,23 @@
|
|
| 1 |
-
|
|
|
|
| 2 |
|
|
|
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
-
|
| 6 |
-
|
| 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
-
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
| 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 model from Hugging Face Hub
|
| 8 |
+
# ------------------------------
|
| 9 |
+
model_path = hf_hub_download(
|
| 10 |
+
repo_id="Vignesh-vigu/Tourism-Package-Prediction", # replace with your actual repo_id
|
| 11 |
+
filename="best_tourism_model_v1.joblib"
|
| 12 |
+
)
|
| 13 |
+
model = joblib.load(model_path)
|
| 14 |
+
|
| 15 |
+
# ------------------------------
|
| 16 |
+
# Streamlit UI
|
| 17 |
+
# ------------------------------
|
| 18 |
+
st.title("🧳 Tourism Wellness Package Prediction App")
|
| 19 |
+
st.write("""
|
| 20 |
+
This app predicts whether a customer is likely to purchase the new **Wellness Tourism Package**.
|
| 21 |
+
Please fill in the details below:
|
| 22 |
+
""")
|
| 23 |
+
|
| 24 |
+
# ------------------------------
|
| 25 |
+
# Input Form
|
| 26 |
+
# ------------------------------
|
| 27 |
+
age = st.number_input("Age", min_value=18, max_value=100, value=35)
|
| 28 |
+
typeof_contact = st.selectbox("Type of Contact", ["Self Enquiry", "Company Invited"])
|
| 29 |
+
city_tier = st.selectbox("City Tier", [1, 2, 3])
|
| 30 |
+
duration_of_pitch = st.number_input("Duration of Pitch (minutes)", min_value=0, max_value=60, value=10)
|
| 31 |
+
occupation = st.selectbox("Occupation", ["Salaried", "Small Business", "Free Lancer"])
|
| 32 |
+
gender = st.radio("Gender", ["Male", "Female"])
|
| 33 |
+
num_person_visiting = st.slider("Number of Persons Visiting", 1, 5, 2)
|
| 34 |
+
num_followups = st.slider("Number of Followups", 0, 10, 2)
|
| 35 |
+
product_pitched = st.selectbox("Product Pitched", ["Basic", "Standard", "Deluxe"])
|
| 36 |
+
preferred_property_star = st.selectbox("Preferred Property Star", [1, 2, 3, 4, 5])
|
| 37 |
+
marital_status = st.selectbox("Marital Status", ["Single", "Married", "Divorced", "Unmarried"])
|
| 38 |
+
num_trips = st.number_input("Number of Trips", min_value=0, max_value=50, value=2)
|
| 39 |
+
passport = st.radio("Passport", [0, 1])
|
| 40 |
+
pitch_satisfaction = st.slider("Pitch Satisfaction Score", 1, 5, 3)
|
| 41 |
+
own_car = st.radio("Own Car", [0, 1])
|
| 42 |
+
num_children_visiting = st.slider("Number of Children Visiting", 0, 5, 0)
|
| 43 |
+
designation = st.selectbox("Designation", ["Executive", "Manager", "Senior Manager", "AVP", "VP"])
|
| 44 |
+
monthly_income = st.number_input("Monthly Income", min_value=1000, max_value=100000, value=20000)
|
| 45 |
+
|
| 46 |
+
# ------------------------------
|
| 47 |
+
# Prepare Input Data
|
| 48 |
+
# ------------------------------
|
| 49 |
+
input_data = pd.DataFrame([{
|
| 50 |
+
"Age": age,
|
| 51 |
+
"TypeofContact": typeof_contact,
|
| 52 |
+
"CityTier": city_tier,
|
| 53 |
+
"DurationOfPitch": duration_of_pitch,
|
| 54 |
+
"Occupation": occupation,
|
| 55 |
+
"Gender": gender,
|
| 56 |
+
"NumberOfPersonVisiting": num_person_visiting,
|
| 57 |
+
"NumberOfFollowups": num_followups,
|
| 58 |
+
"ProductPitched": product_pitched,
|
| 59 |
+
"PreferredPropertyStar": preferred_property_star,
|
| 60 |
+
"MaritalStatus": marital_status,
|
| 61 |
+
"NumberOfTrips": num_trips,
|
| 62 |
+
"Passport": passport,
|
| 63 |
+
"PitchSatisfactionScore": pitch_satisfaction,
|
| 64 |
+
"OwnCar": own_car,
|
| 65 |
+
"NumberOfChildrenVisiting": num_children_visiting,
|
| 66 |
+
"Designation": designation,
|
| 67 |
+
"MonthlyIncome": monthly_income
|
| 68 |
+
}])
|
| 69 |
+
|
| 70 |
+
# ------------------------------
|
| 71 |
+
# Predict Button
|
| 72 |
+
# ------------------------------
|
| 73 |
+
if st.button("Predict"):
|
| 74 |
+
prediction = model.predict(input_data)[0]
|
| 75 |
+
result = "✅ Likely to Purchase Package" if prediction == 1 else "❌ Not Likely to Purchase"
|
| 76 |
+
st.subheader("Prediction Result:")
|
| 77 |
+
st.success(f"The model predicts: **{result}**")
|
requirements.txt
CHANGED
|
@@ -1,3 +1,7 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 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
|