iechambless commited on
Commit
74876b2
·
verified ·
1 Parent(s): c8feb75

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ from flask import Flask, request, jsonify # For creating the Flask API
9
  superkart_api = Flask("SuperKartSalesPredictor") #Complete the code to define the name of the app
10
 
11
  # Load the trained churn prediction model
12
- model = joblib.load("backend_files/xgb_tuned_model_pipeline.joblib") #Complete the code to define the location of the serialized model
13
 
14
  # Define a route for the home page
15
  @superkart_api.get('/')
 
9
  superkart_api = Flask("SuperKartSalesPredictor") #Complete the code to define the name of the app
10
 
11
  # Load the trained churn prediction model
12
+ model = joblib.load("xgb_tuned_model_pipeline.joblib") #Complete the code to define the location of the serialized model
13
 
14
  # Define a route for the home page
15
  @superkart_api.get('/')