adrohit commited on
Commit
d84be00
·
verified ·
1 Parent(s): dae234c

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +15 -12
  2. app.py +83 -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,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="adrohit/VisitWithUs",
8
+ filename="best_machine_failure_model_v1.joblib")
9
+ model = joblib.load(model_path)
10
+
11
+ # Streamlit UI for Wellness Tourism Package Prediction
12
+ st.title("Wellness Tourism Package Prediction App")
13
+ st.write("""
14
+ This application predicts whether a customer will purchase the newly introduced Wellness Tourism Package.
15
+ """)
16
+
17
+ # User input
18
+ Type = st.selectbox("Machine Type", ["H", "L", "M"])
19
+ air_temp = st.number_input("Air Temperature (K)", min_value=250.0, max_value=400.0, value=298.0, step=0.1)
20
+ process_temp = st.number_input("Process Temperature (K)", min_value=250.0, max_value=500.0, value=324.0, step=0.1)
21
+ rot_speed = st.number_input("Rotational Speed (RPM)", min_value=0, max_value=3000, value=1400)
22
+ torque = st.number_input("Torque (Nm)", min_value=0.0, max_value=100.0, value=40.0, step=0.1)
23
+ tool_wear = st.number_input("Tool Wear (min)", min_value=0, max_value=300, value=10)
24
+
25
+ # Assemble input into DataFrame
26
+ input_data = pd.DataFrame([{
27
+ 'Air_temperature': air_temp,
28
+ 'Process_temperature': process_temp,
29
+ 'Rotational_speed': rot_speed,
30
+ 'Torque': torque,
31
+ 'Tool_wear': tool_wear,
32
+ 'Type': Type
33
+ }])
34
+
35
+ # --- Categorical fields ---
36
+ TypeofContact = st.selectbox("Type of Contact", ["Company Invited", "Self Inquiry"])
37
+ CityTier = st.selectbox("City Tier", [1, 2, 3])
38
+ Occupation = st.selectbox("Occupation", ["Salaried", "Free Lancer", "Small Business", "Large Business"])
39
+ Gender = st.selectbox("Gender", ["Male", "Female"])
40
+ MaritalStatus = st.selectbox("Marital Status", ["Single", "Married","Unmarried", "Divorced"])
41
+ Passport = st.selectbox("Passport", [0, 1])
42
+ OwnCar = st.selectbox("Own Car", [0, 1])
43
+ Designation = st.selectbox("Designation", ["Executive", "Manager", "Senior Manager", "VP", "AVP"])
44
+ ProductPitched = st.selectbox("Product Pitched", ["Basic", "Standard", "Deluxe", "Super Deluxe", "King"])
45
+
46
+ # --- Numerical fields ---
47
+ Age = st.number_input("Age", min_value=18, max_value=80, value=30)
48
+ NumberOfPersonVisiting = st.number_input("Number of Persons Visiting", min_value=1, max_value=10, value=2)
49
+ PreferredPropertyStar = st.number_input("Preferred Property Star", min_value=1, max_value=5, value=3)
50
+ NumberOfTrips = st.number_input("Number of Trips per Year", min_value=0, max_value=30, value=3)
51
+ NumberOfChildrenVisiting = st.number_input("Number of Children Visiting", min_value=0, max_value=10, value=0)
52
+ MonthlyIncome = st.number_input("Monthly Income", min_value=0, max_value=500000, value=40000)
53
+ PitchSatisfactionScore = st.number_input("Pitch Satisfaction Score", min_value=1, max_value=5, value=3)
54
+ NumberOfFollowups = st.number_input("Number of Followups", min_value=0, max_value=50, value=3)
55
+ DurationOfPitch = st.number_input("Duration of Pitch (min)", min_value=0, max_value=60, value=10)
56
+
57
+ # --- Assemble into DataFrame ---
58
+ input_data = pd.DataFrame([{
59
+ 'Age': Age,
60
+ 'TypeofContact': TypeofContact,
61
+ 'CityTier': CityTier,
62
+ 'Occupation': Occupation,
63
+ 'Gender': Gender,
64
+ 'NumberOfPersonVisiting': NumberOfPersonVisiting,
65
+ 'PreferredPropertyStar': PreferredPropertyStar,
66
+ 'MaritalStatus': MaritalStatus,
67
+ 'NumberOfTrips': NumberOfTrips,
68
+ 'Passport': Passport,
69
+ 'OwnCar': OwnCar,
70
+ 'NumberOfChildrenVisiting': NumberOfChildrenVisiting,
71
+ 'Designation': Designation,
72
+ 'MonthlyIncome': MonthlyIncome,
73
+ 'PitchSatisfactionScore': PitchSatisfactionScore,
74
+ 'ProductPitched': ProductPitched,
75
+ 'NumberOfFollowups': NumberOfFollowups,
76
+ 'DurationOfPitch': DurationOfPitch
77
+ }])
78
+
79
+ if st.button("Predict"):
80
+ prediction = model.predict(input_data)[0]
81
+ result = "Product Taken" if prediction == 1 else "Not Taken"
82
+ st.subheader("Prediction Result:")
83
+ 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