Skip to content

Commit

Permalink
ufo-model.pkl file should be in the same directory as app.py (microso…
Browse files Browse the repository at this point in the history
…ft#469)

ufo-model.pkl model file should be in the same directory as app.py file
  • Loading branch information
ayyucedemirbas authored Nov 21, 2021
1 parent ab55610 commit cf7e5ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3-Web-App/1-Web-App/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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("/")
Expand Down

0 comments on commit cf7e5ba

Please sign in to comment.