From 75e78c3882afc0ffb460734ae0e40d9ac86fcfb9 Mon Sep 17 00:00:00 2001 From: Randy West <randywest55@gmail.com> Date: Wed, 13 Dec 2017 21:59:31 -0500 Subject: [PATCH] Read pickled best model (in predict) in binary mode to avoid raising UnicodeDecodeError --- code/logistic_sgd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/logistic_sgd.py b/code/logistic_sgd.py index 9f4427e7..2a35693b 100644 --- a/code/logistic_sgd.py +++ b/code/logistic_sgd.py @@ -453,7 +453,7 @@ def predict(): """ # load the saved model - classifier = pickle.load(open('best_model.pkl')) + classifier = pickle.load(open('best_model.pkl', 'rb')) # compile a predictor function predict_model = theano.function(