From cf7e5ba65863b3e34e3e88c115dfba9fe637f6b0 Mon Sep 17 00:00:00 2001 From: Ayyuce Demirbas Date: Sun, 21 Nov 2021 19:06:36 +0300 Subject: [PATCH] ufo-model.pkl file should be in the same directory as app.py (#469) ufo-model.pkl model file should be in the same directory as app.py file --- 3-Web-App/1-Web-App/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3-Web-App/1-Web-App/README.md b/3-Web-App/1-Web-App/README.md index 5076b607..5af9f650 100644 --- a/3-Web-App/1-Web-App/README.md +++ b/3-Web-App/1-Web-App/README.md @@ -281,7 +281,7 @@ Now you can build a Flask app to call your model and return similar results, but app = Flask(__name__) - model = pickle.load(open("../ufo-model.pkl", "rb")) + model = pickle.load(open("./ufo-model.pkl", "rb")) @app.route("/")