Spaces:
Sleeping
Sleeping
| # Import necessary libraries | |
| import numpy as np | |
| import joblib # For loading the serialized model | |
| import pandas as pd # For data manipulation | |
| from flask import Flask, request, jsonify # For creating the Flask API | |
| # Initialize the Flask application | |
| sales_predictor_api = Flask(__name__) | |
| # Load the trained machine learning model | |
| model = joblib.load("sales_forecast_model_v1_0.joblib") | |
| # Define a route for the home page (GET request) | |
| def home(): | |
| """ | |
| This function handles GET requests to the root URL ('/') of the API. | |
| It returns a simple welcome message. | |
| """ | |
| return "Welcome to the Superkart sales Prediction API!" | |
| # Define an endpoint for single property prediction (POST request) | |
| def predict_sales(): | |
| """ | |
| This function handles POST requests to the '/v1/sales' endpoint. | |
| It expects a JSON payload containing sales details and returns | |
| the predicted sales as a JSON response. | |
| """ | |
| # Get the JSON data from the request body | |
| sales_data = request.get_json() | |
| # Extract relevant features from the JSON data | |
| sample = { | |
| 'Product_Weight': sales_data['Product_Weight'], | |
| 'Product_Allocated_Area': sales_data['Product_Allocated_Area'], | |
| 'Product_MRP': sales_data['Product_MRP'], | |
| 'Product_Sugar_Content': sales_data['Product_Sugar_Content'], | |
| 'Product_Type': sales_data['Product_Type'], | |
| 'Store_Id': sales_data['Store_Id'], | |
| 'Store_Establishment_Year': sales_data['Store_Establishment_Year'], | |
| 'Store_Location_City_Type': sales_data['Store_Location_City_Type'], | |
| 'Store_Size': sales_data['Store_Size'], | |
| 'Store_Type': sales_data['Store_Type'] | |
| } | |
| # Convert the extracted data into a Pandas DataFrame | |
| input_data = pd.DataFrame([sample]) | |
| # Make prediction (get log_price) | |
| predicted_amount = model.predict(input_data)[0] | |
| # Convert predicted_price to Python float | |
| predicted_sales_amount = round(float(predicted_amount), 2) | |
| # Return the actual price | |
| return jsonify({'Predicted sales amount (unit)': predicted_sales_amount}) | |
| # Define an endpoint for batch prediction (POST request) | |
| def sales_amount_predictor_batch(): | |
| """ | |
| This function handles POST requests to the '/v1/salesbatch' endpoint. | |
| It expects a CSV file containing sales details for multiple properties | |
| and returns the predicted sales amount as a dictionary in the JSON response. | |
| """ | |
| # Get the uploaded CSV file from the request | |
| file = request.files['file'] | |
| # Read the CSV file into a Pandas DataFrame | |
| input_data = pd.read_csv(file) | |
| # Create a dictionary of predictions with product IDs as keys | |
| product_ids = input_data['Product_Id'].tolist() | |
| input_data = input_data.drop(columns=['Product_Id']) | |
| # Make predictions for all properties in the DataFrame | |
| predicted_amount = model.predict(input_data).tolist() | |
| predicted_sales_amount = [round(float(pred), 2) for pred in predicted_amount] | |
| output_dict = dict(zip(product_ids, predicted_sales_amount)) | |
| # Return the predictions dictionary as a JSON response | |
| return output_dict | |
| # Run the Flask application in debug mode if this script is executed directly | |
| if __name__ == '__main__': | |
| sales_predictor_api.run(debug=True) | |