sahalev commited on
Commit
349dbe7
·
verified ·
1 Parent(s): 5e742c7

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. Dockerfile +16 -0
  2. app.py +53 -0
  3. requirements.txt +11 -0
  4. sales_prediction_model_v1_0.joblib +3 -0
Dockerfile ADDED
@@ -0,0 +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:sales_predictor_api"]
app.py ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import joblib
2
+ import pandas as pd
3
+ from flask import Flask, request, jsonify
4
+
5
+ # Initialize Flask app with a name
6
+ sales_predictor_api = Flask("SuperKart Sales Predictor")
7
+
8
+ # Load the trained churn prediction model
9
+ model = joblib.load("sales_prediction_model_v1_0.joblib")
10
+
11
+ # Define a route for the home page
12
+ @sales_predictor_api.get('/')
13
+ def home():
14
+ return "Welcome to the SuperKart Sales Prediction API!"
15
+
16
+ # Define an endpoint to predict churn for a product sale info
17
+ @sales_predictor_api.post('/v1/predict')
18
+ def predict_sales():
19
+ try:
20
+ # Get JSON data from the request
21
+ data = request.get_json()
22
+
23
+ # Extract features expected by the model
24
+ sample = {
25
+ 'Product_Weight': data['Product_Weight'],
26
+ 'Product_Sugar_Content': data['Product_Sugar_Content'],
27
+ 'Product_Allocated_Area': data['Product_Allocated_Area'],
28
+ 'Product_Type': data['Product_Type'],
29
+ 'Product_MRP': data['Product_MRP'],
30
+ 'Store_Id': data['Store_Id'],
31
+ 'Store_Establishment_Year': data['Store_Establishment_Year'],
32
+ 'Store_Size': data['Store_Size'],
33
+ 'Store_Location_City_Type': data['Store_Location_City_Type'],
34
+ 'Store_Type': data['Store_Type']
35
+ }
36
+
37
+ # Convert to DataFrame
38
+ input_df = pd.DataFrame([sample])
39
+
40
+ # Predict sales (numeric value)
41
+ prediction = model.predict(input_df).tolist()[0]
42
+
43
+ # Return prediction as JSON
44
+ return jsonify({
45
+ 'Predicted_Sales': round(prediction, 2)
46
+ })
47
+
48
+ except Exception as e:
49
+ return jsonify({'error': str(e)}), 400
50
+
51
+ # Run the Flask app in debug mode
52
+ if __name__ == '__main__':
53
+ app.run(debug=True)
requirements.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
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
sales_prediction_model_v1_0.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efd9ab74ce639892dbc38b9f2c14e2215ebfd4891dbb653d961285ccb6da823e
3
+ size 641443