Upload folder using huggingface_hub
Browse files- Dockerfile +15 -12
- app.py +49 -0
- requirements.txt +6 -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,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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="nsriram78/customer-attrition-analysis", filename="best_churn_model_v1.joblib")
|
| 8 |
+
|
| 9 |
+
# Load the model
|
| 10 |
+
model = joblib.load(model_path)
|
| 11 |
+
|
| 12 |
+
# Streamlit UI for Customer Churn Prediction
|
| 13 |
+
st.title("Customer Churn Prediction App")
|
| 14 |
+
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.")
|
| 15 |
+
st.write("Kindly enter the customer details to check whether they are likely to churn.")
|
| 16 |
+
|
| 17 |
+
# Collect user input
|
| 18 |
+
CreditScore = st.number_input("Credit Score (customer's credit score)", min_value=300, max_value=900, value=650)
|
| 19 |
+
Geography = st.selectbox("Geography (country where the customer resides)", ["France", "Germany", "Spain"])
|
| 20 |
+
Age = st.number_input("Age (customer's age in years)", min_value=18, max_value=100, value=30)
|
| 21 |
+
Tenure = st.number_input("Tenure (number of years the customer has been with the bank)", value=12)
|
| 22 |
+
Balance = st.number_input("Account Balance (customer’s account balance)", min_value=0.0, value=10000.0)
|
| 23 |
+
NumOfProducts = st.number_input("Number of Products (number of products the customer has with the bank)", min_value=1, value=1)
|
| 24 |
+
HasCrCard = st.selectbox("Has Credit Card?", ["Yes", "No"])
|
| 25 |
+
IsActiveMember = st.selectbox("Is Active Member?", ["Yes", "No"])
|
| 26 |
+
EstimatedSalary = st.number_input("Estimated Salary (customer’s estimated salary)", min_value=0.0, value=50000.0)
|
| 27 |
+
|
| 28 |
+
# Convert categorical inputs to match model training
|
| 29 |
+
input_data = pd.DataFrame([{
|
| 30 |
+
'CreditScore': CreditScore,
|
| 31 |
+
'Geography': Geography,
|
| 32 |
+
'Age': Age,
|
| 33 |
+
'Tenure': Tenure,
|
| 34 |
+
'Balance': Balance,
|
| 35 |
+
'NumOfProducts': NumOfProducts,
|
| 36 |
+
'HasCrCard': 1 if HasCrCard == "Yes" else 0,
|
| 37 |
+
'IsActiveMember': 1 if IsActiveMember == "Yes" else 0,
|
| 38 |
+
'EstimatedSalary': EstimatedSalary
|
| 39 |
+
}])
|
| 40 |
+
|
| 41 |
+
# Set the classification threshold
|
| 42 |
+
classification_threshold = 0.45
|
| 43 |
+
|
| 44 |
+
# Predict button
|
| 45 |
+
if st.button("Predict"):
|
| 46 |
+
prediction_proba = model.predict_proba(input_data)[0, 1]
|
| 47 |
+
prediction = (prediction_proba >= classification_threshold).astype(int)
|
| 48 |
+
result = "churn" if prediction == 1 else "not churn"
|
| 49 |
+
st.write(f"Based on the information provided, the customer is likely to {result}.")
|
requirements.txt
CHANGED
|
@@ -1,3 +1,6 @@
|
|
| 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
|