jackfroooot commited on
Commit
a6268d2
·
verified ·
1 Parent(s): 5fb6ae3

Upload folder using huggingface_hub

Browse files
Files changed (5) hide show
  1. .huggingface.yaml +1 -1
  2. Dockerfile +10 -9
  3. README.md +1 -1
  4. app.py +60 -71
  5. requirements.txt +1 -5
.huggingface.yaml CHANGED
@@ -1,4 +1,4 @@
1
 
2
  sdk: streamlit
3
- app_file: backend_files/app.py
4
 
 
1
 
2
  sdk: streamlit
3
+ app_file: frontend_files/app.py
4
 
Dockerfile CHANGED
@@ -1,16 +1,17 @@
 
1
  FROM python:3.9-slim
2
 
3
- # Set the working directory inside the container
4
  WORKDIR /app
5
 
6
- # Copy all files from the current directory to the container's working directory
7
  COPY . .
8
 
9
- # Install dependencies from the requirements file without using cache to reduce image size
10
- RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
 
12
- # Define the command to start the application using Gunicorn with 4 worker processes
13
- # - `-w 4`: Uses 4 worker processes for handling requests
14
- # - `-b 0.0.0.0:7860`: Binds the server to port 7860 on all network interfaces
15
- # - `app:app`: Runs the Flask app (assuming `app.py` contains the Flask instance named `app`)
16
- CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:cust_predictor_api"]
 
1
+ # Use a minimal base image with Python 3.9 installed
2
  FROM python:3.9-slim
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
+ # Define the command to run the Streamlit app on port 8501 and make it accessible externally
14
+ CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]
15
+ #CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]
16
+
17
+ # NOTE: Disable XSRF protection for easier external access in order to make batch predictions
README.md CHANGED
@@ -4,5 +4,5 @@ emoji: 🚀
4
  colorFrom: gray
5
  colorTo: indigo
6
  sdk: streamlit
7
- app_file: backend_files/app.py
8
  ---
 
4
  colorFrom: gray
5
  colorTo: indigo
6
  sdk: streamlit
7
+ app_file: frontend_files/app.py
8
  ---
app.py CHANGED
@@ -1,72 +1,61 @@
1
- # Import necessary libraries
2
- import numpy as np
3
- import joblib # For loading the serialized model
4
- import pandas as pd # For data manipulation
5
- from flask import Flask, request, jsonify # For creating the Flask API
6
 
7
- # Initialize the Flask application
8
- cust_predictor_api = Flask("ExtraaLearn Customer Predictor")
9
-
10
- # Load the trained machine learning model
11
- try:
12
- model = joblib.load("customer_prediction_model_v1_0.joblib")
13
- except Exception as e:
14
- # If the model fails to load, print the error and continue, but the API will fail gracefully
15
- print(f"ERROR: Failed to load model: {e}")
16
- model = None # Set to None so the prediction route can check it
17
-
18
- # Define a route for the home page (GET request)
19
- @cust_predictor_api.get('/')
20
- def home():
21
- """
22
- This function handles GET requests to the root URL ('/') of the API.
23
- It returns a simple welcome message.
24
- """
25
- return "Welcome to the ExtraaLearn Customer Prediction API!"
26
-
27
- classification_threshold = 0.45
28
-
29
- # Define an endpoint for customer prediction (POST request)
30
- @cust_predictor_api.post('/v1/cust_lead')
31
- def predict_cust_lead():
32
- """
33
- This function handles POST requests to the '/v1/cust_lead' endpoint.
34
- It expects a JSON payload containing customer details and returns
35
- the predicted customer probability as a JSON response.
36
- """
37
- # Get the JSON data from the request body
38
- cust_data = request.get_json()
39
-
40
- # Extract relevant features from the JSON data
41
- sample = {
42
- 'age' : cust_data['age'],
43
- 'current_occupation' : cust_data['current_occupation'],
44
- 'first_interaction' : cust_data['first_interaction'],
45
- 'profile_completed' : cust_data['profile_completed'],
46
- 'website_visits' : cust_data['website_visits'],
47
- 'time_spent_on_website' : cust_data['time_spent_on_website'],
48
- 'page_views_per_visit' : cust_data['page_views_per_visit'],
49
- 'last_activity' : cust_data['last_activity'],
50
- 'print_media_type1' : cust_data['print_media_type1'],
51
- 'print_media_type2' : cust_data['print_media_type2'],
52
- 'digital_media' : cust_data['digital_media'],
53
- 'educational_channels' : cust_data['educational_channels'],
54
- 'referral' : cust_data['referral']
55
- }
56
-
57
- # Convert the extracted data into a Pandas DataFrame
58
- input_data = pd.DataFrame([sample])
59
-
60
- # Make prediction
61
- predicted_cust = model.predict_proba(input_data)[0][1]
62
-
63
- # convert continuous prob as 0/1
64
- predicted_cust = (predicted_cust >= classification_threshold).astype(int)
65
-
66
- # Return the actual prediction status
67
- return jsonify({'Predicted customer status': predicted_cust})
68
-
69
-
70
- # Run the Flask application in debug mode if this script is executed directly
71
- if __name__ == '__main__':
72
- cust_predictor_api.run(debug=True)
 
 
 
 
 
 
1
 
2
+ import streamlit as st
3
+ import pandas as pd
4
+ import joblib
5
+
6
+ import warnings
7
+ warnings.filterwarnings("ignore", message=".*ScriptRunContext.*")
8
+
9
+ # Load the trained model
10
+ def load_model():
11
+ return joblib.load("customer_prediction_model_v1_0.joblib")
12
+
13
+ model = load_model()
14
+
15
+ # Set the title of the Streamlit app
16
+ st.title("ExtraaLearn Customer Predictor")
17
+ st.subheader("Online Prediction")
18
+
19
+ # Collect user input based on dataset columns
20
+ # Collect user input for property features
21
+ age = st.number_input("age", min_value=5, max_value=90, step=1, value=30)
22
+ website_visits = st.number_input("website_visits", min_value=0, step=1, value=1)
23
+ time_spent_on_website = st.number_input("time_spent_on_website", min_value=0, step=1, value=1)
24
+ page_views_per_visit = st.number_input("page_views_per_visit", min_value=0, step=1, value=1)
25
+ current_occupation = st.selectbox("current_occupation", ["Professional", "Student", "Unemployed"])
26
+ first_interaction = st.selectbox("first_interaction", ["Mobile App", "Website"])
27
+ profile_completed = st.selectbox("profile_completed", ["Medium", "High", "Low"])
28
+ last_activity = st.selectbox("last_activity", ["Website Activity", "Email Activity", "Phone Activity"])
29
+ print_media_type1 = st.selectbox("print_media_type1", ["Yes", "No"])
30
+ print_media_type2 = st.selectbox("print_media_type2", ["Yes", "No"])
31
+ digital_media = st.selectbox("digital_media", ["Yes", "No"])
32
+ educational_channels = st.selectbox("educational_channels", ["Yes", "No"])
33
+ referral = st.selectbox("referral", ["Yes", "No"])
34
+
35
+ # Convert user input into a DataFrame
36
+ input_data = pd.DataFrame([{
37
+ 'age' : 'age',
38
+ 'website_visits' : 'website_visits',
39
+ 'time_spent_on_website' : 'time_spent_on_website',
40
+ 'page_views_per_visit' : 'page_views_per_visit',
41
+ 'current_occupation' : 'current_occupation',
42
+ 'first_interaction' : 'first_interaction',
43
+ 'profile_completed' : 'profile_completed',
44
+ 'last_activity' : 'last_activity',
45
+ 'print_media_type1' : 'print_media_type1',
46
+ 'print_media_type2' : 'print_media_type2',
47
+ 'digital_media' : 'digital_media',
48
+ 'educational_channels' : 'educational_channels',
49
+ 'referral' : 'referral'
50
+ }])
51
+
52
+ # Set classification threshold
53
+ classification_threshold = 0.5
54
+
55
+ # Predict button
56
+ if st.button("Predict"):
57
+ prediction_proba = model.predict_proba(input_data)[0, 1]
58
+ prediction = (prediction_proba >= classification_threshold).astype(int)
59
+ result = "Join" if prediction == 1 else "not join"
60
+ st.write(f"Prediction: The customer is likely to **{result}**.")
61
+ st.write(f"Churn Probability: {prediction_proba:.2f}")
 
 
 
 
 
 
requirements.txt CHANGED
@@ -1,11 +1,7 @@
 
1
  pandas==2.2.2
2
  numpy==2.0.2
3
  scikit-learn==1.6.1
4
  xgboost==2.1.4
5
  joblib==1.4.2
6
- Werkzeug==2.2.2
7
- flask==2.2.2
8
- gunicorn==20.1.0
9
- requests==2.28.1
10
- uvicorn[standard]
11
  streamlit==1.43.2
 
1
+
2
  pandas==2.2.2
3
  numpy==2.0.2
4
  scikit-learn==1.6.1
5
  xgboost==2.1.4
6
  joblib==1.4.2
 
 
 
 
 
7
  streamlit==1.43.2