Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- best_sales_forecasting_model_updated.joblib +3 -0
- main.py +1 -1
best_sales_forecasting_model_updated.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c742e097399440e4c5b1023aae9a11f0d76c06d5111210ddcc8ad4c2325247c5
|
| 3 |
+
size 36107955
|
main.py
CHANGED
|
@@ -6,7 +6,7 @@ from flask import Flask, request, jsonify
|
|
| 6 |
app = Flask("SuperKart Sales Predictor")
|
| 7 |
|
| 8 |
# Load the trained sales prediction model
|
| 9 |
-
model = joblib.load("
|
| 10 |
|
| 11 |
|
| 12 |
# Define a route for the home page
|
|
|
|
| 6 |
app = Flask("SuperKart Sales Predictor")
|
| 7 |
|
| 8 |
# Load the trained sales prediction model
|
| 9 |
+
model = joblib.load("best_sales_forecasting_model_updated.joblib")
|
| 10 |
|
| 11 |
|
| 12 |
# Define a route for the home page
|