Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -8,7 +8,7 @@ from flask import Flask, request, jsonify # For creating the Flask API
|
|
| 8 |
superkart_model_api = Flask("SuperKart’s Decision-Making System")
|
| 9 |
|
| 10 |
# Load the trained machine learning model
|
| 11 |
-
model = joblib.load("
|
| 12 |
|
| 13 |
# Define a route for the home page (GET request)
|
| 14 |
@superkart_model_api.get('/')
|
|
|
|
| 8 |
superkart_model_api = Flask("SuperKart’s Decision-Making System")
|
| 9 |
|
| 10 |
# Load the trained machine learning model
|
| 11 |
+
model = joblib.load("superkart_decision_making_model_v1_0.joblib")
|
| 12 |
|
| 13 |
# Define a route for the home page (GET request)
|
| 14 |
@superkart_model_api.get('/')
|