#flask #pickle
Вопрос:
Я построил свою модель и экспортировал ее в файл .pkl. Я не могу загрузить свой файл .pkl в колбу. И я получаю сообщение об ошибке как _pickle.Ошибка отмены: Была обнаружена инструкция load persistent id, но функция persistent_load не была указана.
ниже приведен мой код
import pickle
from flask import Flask, request, render_template, url_for
app = Flask(__name__)
# I load my model here
pickle_in = open('export.pkl','rb')
model = pickle.load(pickle_in)
@app.route("/")
def home():
render_template("index.html")
@app.route("/predict", methods=["POST"])
def predict():
imagefile = request.files['imagefile']
image_path = 'static/img' imagefile.filename
imagefile.save(image_path)
prediction = model.predict(image_path)
return render_template('index.html', predictions = prediction)
if __name__ == "__main__":
app.run(debug=True)
Заранее благодарю вас за то, что помогли мне.