praneeth232 commited on
Commit
c39d0ce
·
verified ·
1 Parent(s): 0e118e1

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +71 -0
app.py ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %%writefile backend_files/app.py
2
+ import joblib
3
+ import pandas as pd
4
+ from flask import Flask, request, jsonify
5
+
6
+ # Initialize Flask app with a name
7
+ churn_predictor_api = Flask("Customer Churn Predictor")
8
+
9
+ # Load the trained churn prediction model
10
+ model = joblib.load("churn_prediction_model_v1_0.joblib")
11
+
12
+ # Define a route for the home page
13
+ @churn_predictor_api.get('/')
14
+ def home():
15
+ return "Welcome to the Customer Churn Prediction API!"
16
+
17
+ # Define an endpoint to predict churn for a single customer
18
+ @churn_predictor_api.post('/v1/customer')
19
+ def predict_churn():
20
+ # Get JSON data from the request
21
+ customer_data = request.get_json()
22
+
23
+ # Extract relevant customer features from the input data
24
+ sample = {
25
+ 'CreditScore': customer_data['CreditScore'],
26
+ 'Geography': customer_data['Geography'],
27
+ 'Age': customer_data['Age'],
28
+ 'Tenure': customer_data['Tenure'],
29
+ 'Balance': customer_data['Balance'],
30
+ 'NumOfProducts': customer_data['NumOfProducts'],
31
+ 'HasCrCard': customer_data['HasCrCard'],
32
+ 'IsActiveMember': customer_data['IsActiveMember'],
33
+ 'EstimatedSalary': customer_data['EstimatedSalary']
34
+ }
35
+
36
+ # Convert the extracted data into a DataFrame
37
+ input_data = pd.DataFrame([sample])
38
+
39
+ # Make a churn prediction using the trained model
40
+ prediction = model.predict(input_data).tolist()[0]
41
+
42
+ # Map prediction result to a human-readable label
43
+ prediction_label = "churn" if prediction == 1 else "not churn"
44
+
45
+ # Return the prediction as a JSON response
46
+ return jsonify({'Prediction': prediction_label})
47
+
48
+ # Define an endpoint to predict churn for a batch of customers
49
+ @churn_predictor_api.post('/v1/customerbatch')
50
+ def predict_churn_batch():
51
+ # Get the uploaded CSV file from the request
52
+ file = request.files['file']
53
+
54
+ # Read the file into a DataFrame
55
+ input_data = pd.read_csv(file)
56
+
57
+ # Make predictions for the batch data and convert raw predictions into a readable format
58
+ predictions = [
59
+ 'Churn' if x == 1
60
+ else "Not Churn"
61
+ for x in model.predict(input_data.drop("CustomerId",axis=1)).tolist()
62
+ ]
63
+
64
+ cust_id_list = input_data.CustomerId.values.tolist()
65
+ output_dict = dict(zip(cust_id_list, predictions))
66
+
67
+ return output_dict
68
+
69
+ # Run the Flask app in debug mode
70
+ if __name__ == '__main__':
71
+ app.run(debug=True)