From 563c75212f6da19bb31b626cce0dff342c88412b Mon Sep 17 00:00:00 2001 From: Ayyuce Demirbas Date: Sat, 20 Nov 2021 01:14:23 +0300 Subject: [PATCH] ufo-model.pkl file should be in the same directory as app.py 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 eb124eb5..6c7edba4 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("/")