dyanaj commited on
Commit
8a5edba
·
verified ·
1 Parent(s): 352df82

Upload folder using huggingface_hub

Browse files
Dockerfile CHANGED
@@ -1,16 +1,16 @@
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:churn_predictor_api"]
 
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:superkart_revenue_predictor_api"]
app.py CHANGED
@@ -1,70 +1,98 @@
1
- import joblib
2
- import pandas as pd
3
- from flask import Flask, request, jsonify
4
-
5
- # Initialize Flask app with a name
6
- churn_predictor_api = Flask("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
- @churn_predictor_api.get('/')
13
- def home():
14
- return "Welcome to the Customer Churn Prediction API!"
15
-
16
- # Define an endpoint to predict churn for a single customer
17
- @churn_predictor_api.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
- 'CreditScore': customer_data['CreditScore'],
25
- 'Geography': customer_data['Geography'],
26
- 'Age': customer_data['Age'],
27
- 'Tenure': customer_data['Tenure'],
28
- 'Balance': customer_data['Balance'],
29
- 'NumOfProducts': customer_data['NumOfProducts'],
30
- 'HasCrCard': customer_data['HasCrCard'],
31
- 'IsActiveMember': customer_data['IsActiveMember'],
32
- 'EstimatedSalary': customer_data['EstimatedSalary']
33
- }
34
-
35
- # Convert the extracted data into a DataFrame
36
- input_data = pd.DataFrame([sample])
37
-
38
- # Make a churn prediction using the trained model
39
- prediction = model.predict(input_data).tolist()[0]
40
-
41
- # Map prediction result to a human-readable label
42
- prediction_label = "churn" if prediction == 1 else "not churn"
43
-
44
- # Return the prediction as a JSON response
45
- return jsonify({'Prediction': prediction_label})
46
-
47
- # Define an endpoint to predict churn for a batch of customers
48
- @churn_predictor_api.post('/v1/customerbatch')
49
- def predict_churn_batch():
50
- # Get the uploaded CSV file from the request
51
- file = request.files['file']
52
-
53
- # Read the file into a DataFrame
54
- input_data = pd.read_csv(file)
55
-
56
- # Make predictions for the batch data and convert raw predictions into a readable format
57
- predictions = [
58
- 'Churn' if x == 1
59
- else "Not Churn"
60
- for x in model.predict(input_data.drop("CustomerId",axis=1)).tolist()
61
- ]
62
-
63
- cust_id_list = input_data.CustomerId.values.tolist()
64
- output_dict = dict(zip(cust_id_list, predictions))
65
-
66
- return output_dict
67
-
68
- # Run the Flask app in debug mode
69
- if __name__ == '__main__':
70
- app.run(debug=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ superkart_revenue_predictor_api = Flask("Predict Product Store Sales based on product and store attributes")
9
+
10
+ # Load the trained machine learning model
11
+ model = joblib.load("superkart_revenue_prediction_model_v1_0.joblib")
12
+
13
+ # Define a route for the home page (GET request)
14
+ @superkart_revenue_predictor_api.get('/')
15
+ def home():
16
+ """
17
+ This function handles GET requests to the root URL ('/') of the API.
18
+ It returns a simple welcome message.
19
+ """
20
+ return "Welcome to the SuperKart Sales Prediction API!"
21
+
22
+ # Define an endpoint for single property prediction (POST request)
23
+ @superkart_revenue_predictor_api.post('/v1/sales')
24
+ def predict_sales_price():
25
+ """
26
+ This function handles POST requests to the '/v1/sales' endpoint.
27
+ It expects a JSON payload containing property details and returns
28
+ the predicted sales price as a JSON response.
29
+ """
30
+ # Get the JSON data from the request body
31
+ product_data = request.get_json()
32
+
33
+ # Extract relevant features from the JSON data
34
+ json_extract = {
35
+ 'Product_Weight': product_data['Product_Weight'],
36
+ 'Product_Sugar_Content': product_data['Product_Sugar_Content'],
37
+ 'Product_Allocated_Area': product_data['Product_Allocated_Area'],
38
+ 'Product_Type': product_data['Product_Type'],
39
+ 'Product_MRP': product_data['Product_MRP'],
40
+ 'Store_Id': product_data['Store_Id'],
41
+ 'Store_Size': product_data['Store_Size'],
42
+ 'Store_Location_City_Type': product_data['Store_Location_City_Type'],
43
+ 'Store_Type': product_data['Store_Type'],
44
+ 'Product_Category': product_data['Product_Category'],
45
+ 'Perishable': product_data['Perishable'],
46
+ 'Store_Age': product_data['Store_Age']
47
+ }
48
+
49
+ # Convert the extracted data into a Pandas DataFrame
50
+ input_data = pd.DataFrame([json_extract])
51
+
52
+ # Change MRP to Log as this is done before pipeline (feature engineering)
53
+ input_data['MRP_log'] = np.log(input_data['Product_MRP'])
54
+ input_data['Price_Per_Display'] = input_data['Product_MRP'] * input_data['Product_Allocated_Area']
55
+
56
+ # Make prediction
57
+ predicted_price = model.predict(input_data)[0]
58
+
59
+ # Return the actual price
60
+ return jsonify({'Predicted Sales': predicted_price})
61
+
62
+
63
+ # Define an endpoint for batch prediction (POST request)
64
+ @superkart_revenue_predictor_api.post('/v1/salesbatch')
65
+ def predict_salesprice_batch():
66
+ """
67
+ This function handles POST requests to the '/v1/salesbatch' endpoint.
68
+ It expects a CSV file containing property details for multiple properties
69
+ and returns the predicted sales prices as a dictionary in the JSON response.
70
+ """
71
+ # Get the uploaded CSV file from the request
72
+ file = request.files['file']
73
+
74
+ # Read the CSV file into a Pandas DataFrame
75
+ input_data = pd.read_csv(file)
76
+
77
+ # Change MRP to Log as this is done before pipeline (feature engineering)
78
+ input_data['MRP_log'] = np.log(input_data['Product_MRP'])
79
+ input_data['Price_Per_Display'] = input_data['Product_MRP'] * input_data['Product_Allocated_Area']
80
+
81
+ # Save ID
82
+ product_ids = input_data['Product_Id']
83
+
84
+ # Drop ID
85
+ input_data = input_data.drop('Product_Id', axis=1)
86
+
87
+ # Make predictions for all properties in the DataFrame (get log_prices)
88
+ predicted_prices = model.predict(input_data).tolist()
89
+
90
+ # Create a dictionary of predictions with property IDs as keys
91
+ output_dict = dict(zip(product_ids, predicted_prices))
92
+
93
+ # Return the predictions dictionary as a JSON response
94
+ return output_dict
95
+
96
+ # Run the Flask application in debug mode if this script is executed directly
97
+ if __name__ == '__main__':
98
+ superkart_revenue_predictor_api.run(debug=True)
requirements.txt CHANGED
@@ -1,11 +1,10 @@
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
+ 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]
 
superkart_revenue_prediction_model_v1_0.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdf760b47429c697e85c868c40ad96c064497d03c5d0916b8bf5fac2d9a726ef
3
+ size 899187