praneeth232 commited on
Commit
d9fadad
·
verified ·
1 Parent(s): 311c979

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +55 -0
app.py ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+ import streamlit as st
3
+ import pandas as pd
4
+
5
+ st.title("Customer Churn Prediction")
6
+
7
+ # Batch Prediction
8
+ st.subheader("Online Prediction")
9
+
10
+ # Input fields for customer data
11
+ CustomerID = st.number_input("Customer ID", min_value=10000000, max_value=99999999)
12
+ CreditScore = st.number_input("Credit Score (customer's credit score)", min_value=300, max_value=900, value=650)
13
+ Geography = st.selectbox("Geography (country where the customer resides)", ["France", "Germany", "Spain"])
14
+ Age = st.number_input("Age (customer's age in years)", min_value=18, max_value=100, value=30)
15
+ Tenure = st.number_input("Tenure (number of years the customer has been with the bank)", value=12)
16
+ Balance = st.number_input("Account Balance (customer’s account balance)", min_value=0.0, value=10000.0)
17
+ NumOfProducts = st.number_input("Number of Products (number of products the customer has with the bank)", min_value=1, value=1)
18
+ HasCrCard = st.selectbox("Has Credit Card?", ["Yes", "No"])
19
+ IsActiveMember = st.selectbox("Is Active Member?", ["Yes", "No"])
20
+ EstimatedSalary = st.number_input("Estimated Salary (customer’s estimated salary)", min_value=0.0, value=50000.0)
21
+
22
+ customer_data = {
23
+ 'CreditScore': CreditScore,
24
+ 'Geography': Geography,
25
+ 'Age': Age,
26
+ 'Tenure': Tenure,
27
+ 'Balance': Balance,
28
+ 'NumOfProducts': NumOfProducts,
29
+ 'HasCrCard': 1 if HasCrCard == "Yes" else 0,
30
+ 'IsActiveMember': 1 if IsActiveMember == "Yes" else 0,
31
+ 'EstimatedSalary': EstimatedSalary
32
+ }
33
+
34
+ if st.button("Predict", type='primary'):
35
+ response = requests.post("https://<user_name>-<space_name>.hf.space/v1/customer", json=customer_data) # enter user name and space name before running the cell
36
+ if response.status_code == 200:
37
+ result = response.json()
38
+ churn_prediction = result["Prediction"] # Extract only the value
39
+ st.write(f"Based on the information provided, the customer with ID {CustomerID} is likely to {churn_prediction}.")
40
+ else:
41
+ st.error("Error in API request")
42
+
43
+ # Batch Prediction
44
+ st.subheader("Batch Prediction")
45
+
46
+ file = st.file_uploader("Upload CSV file", type=["csv"])
47
+ if file is not None:
48
+ if st.button("Predict for Batch", type='primary'):
49
+ response = requests.post("https://<user_name>-<space_name>.hf.space/v1/customerbatch", files={"file": file}) # enter user name and space name before running the cell
50
+ if response.status_code == 200:
51
+ result = response.json()
52
+ st.header("Batch Prediction Results")
53
+ st.write(result)
54
+ else:
55
+ st.error("Error in API request")