anithajk commited on
Commit
2748efe
·
verified ·
1 Parent(s): 6c87e89

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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("deployment_files/superkart_decision_making_model_v1_0.joblib")
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('/')