AdarshRL commited on
Commit
ea53e89
·
verified ·
1 Parent(s): 716bfcc

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +15 -12
  2. app.py +56 -0
  3. requirements.txt +6 -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
+ #common constants:
7
+ GITHUB_REPO_NAME = 'CustomerChurnMLOps'
8
+ HUGGINGFACE_SPACE_NAME = 'CustomerChurnMLOps'
9
+ HUGGINGFACE_DATASET_NAME = 'bank_customer_churn'
10
+ HUGGINGFACE_MODEL_NAME= 'churn-model'
11
+ HUGGINGFACE_USER_NAME = 'AdarshRL'
12
+
13
+ # Download the model from the Model Hub
14
+ model_path = hf_hub_download(repo_id=f"{HUGGINGFACE_USER_NAME}/{HUGGINGFACE_MODEL_NAME}", filename="best_churn_model.joblib")
15
+
16
+ # Load the model
17
+ model = joblib.load(model_path)
18
+
19
+ # Streamlit UI for Customer Churn Prediction
20
+ st.title("Customer Churn Prediction App")
21
+ st.write("The Customer Churn Prediction App is an internal tool for bank staff that predicts whether customers are at risk of churning based on their details.")
22
+ st.write("Kindly enter the customer details to check whether they are likely to churn.")
23
+
24
+ # Collect user input
25
+ CreditScore = st.number_input("Credit Score (customer's credit score)", min_value=300, max_value=900, value=650)
26
+ Geography = st.selectbox("Geography (country where the customer resides)", ["France", "Germany", "Spain"])
27
+ Age = st.number_input("Age (customer's age in years)", min_value=18, max_value=100, value=30)
28
+ Tenure = st.number_input("Tenure (number of years the customer has been with the bank)", value=12)
29
+ Balance = st.number_input("Account Balance (customer’s account balance)", min_value=0.0, value=10000.0)
30
+ NumOfProducts = st.number_input("Number of Products (number of products the customer has with the bank)", min_value=1, value=1)
31
+ HasCrCard = st.selectbox("Has Credit Card?", ["Yes", "No"])
32
+ IsActiveMember = st.selectbox("Is Active Member?", ["Yes", "No"])
33
+ EstimatedSalary = st.number_input("Estimated Salary (customer’s estimated salary)", min_value=0.0, value=50000.0)
34
+
35
+ # Convert categorical inputs to match model training
36
+ input_data = pd.DataFrame([{
37
+ 'CreditScore': CreditScore,
38
+ 'Geography': Geography,
39
+ 'Age': Age,
40
+ 'Tenure': Tenure,
41
+ 'Balance': Balance,
42
+ 'NumOfProducts': NumOfProducts,
43
+ 'HasCrCard': 1 if HasCrCard == "Yes" else 0,
44
+ 'IsActiveMember': 1 if IsActiveMember == "Yes" else 0,
45
+ 'EstimatedSalary': EstimatedSalary
46
+ }])
47
+
48
+ # Set the classification threshold
49
+ classification_threshold = 0.45
50
+
51
+ # Predict button
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 = "churn" if prediction == 1 else "not churn"
56
+ st.write(f"Based on the information provided, the customer is likely to {result}.")
requirements.txt CHANGED
@@ -1,3 +1,6 @@
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