jarpan03 commited on
Commit
2510cce
·
verified ·
1 Parent(s): cbc0990

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +48 -18
app.py CHANGED
@@ -1,24 +1,29 @@
1
  import joblib
2
- import pandas
3
- from flask import Flask, jsonify, request
4
 
 
5
  app = Flask("Telecom Customer Churn Predictor")
 
 
6
  model = joblib.load("churn_prediction_model_v1_0.joblib")
7
 
 
8
  @app.get('/')
9
  def home():
10
- return "Welcome to the Telecom churn model"
11
 
12
- #Churn for a single customer
13
  @app.post('/v1/customer')
14
  def predict_churn():
 
 
15
 
16
- customer_data = request.get_json()
17
-
18
- sample = {
19
- 'SeniorCitizen':customer_data['SeniorCitizen'],
20
- 'Partner':customer_data['Partner'],
21
- 'Dependents': customer_data['Dependents'],
22
  'tenure': customer_data['tenure'],
23
  'PhoneService': customer_data['PhoneService'],
24
  'InternetService': customer_data['InternetService'],
@@ -26,16 +31,41 @@ def predict_churn():
26
  'PaymentMethod': customer_data['PaymentMethod'],
27
  'MonthlyCharges': customer_data['MonthlyCharges'],
28
  'TotalCharges': customer_data['TotalCharges']
29
- }
30
 
31
- input_data = pd.DataFrame([sample])
 
32
 
33
- predicted_val = model.predict(input_data)[0]
34
- prediction_label = "churn" if predicted_val == 1 else "not churn"
35
 
36
- return jsonify({'Prediction':prediction_label})
 
37
 
38
- #run the flask app in debug mode
39
- if __name__ == '__main__':
40
- app.run(debug=True)
 
 
 
 
 
 
 
 
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import joblib
2
+ import pandas as pd
3
+ from flask import Flask, request, jsonify
4
 
5
+ # Initialize Flask app with a name
6
  app = Flask("Telecom Customer Churn Predictor")
7
+
8
+ # Load the trained churn prediction model
9
  model = joblib.load("churn_prediction_model_v1_0.joblib")
10
 
11
+ # Define a route for the home page
12
  @app.get('/')
13
  def home():
14
+ return "Welcome to the Telecom Customer Churn Prediction API"
15
 
16
+ # Define an endpoint to predict churn for a single customer
17
  @app.post('/v1/customer')
18
  def predict_churn():
19
+ # Get JSON data from the request
20
+ customer_data = request.get_json()
21
 
22
+ # Extract relevant customer features from the input data
23
+ sample = {
24
+ 'SeniorCitizen': customer_data['SeniorCitizen'],
25
+ 'Partner': customer_data['Partner'],
26
+ 'Dependents': customer_data['Dependents'],
 
27
  'tenure': customer_data['tenure'],
28
  'PhoneService': customer_data['PhoneService'],
29
  'InternetService': customer_data['InternetService'],
 
31
  'PaymentMethod': customer_data['PaymentMethod'],
32
  'MonthlyCharges': customer_data['MonthlyCharges'],
33
  'TotalCharges': customer_data['TotalCharges']
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
+ @app.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)