gpt4 book ai didi

python - 加载模型时出现类型错误

转载 作者:行者123 更新时间:2023-12-01 08:48:46 24 4
gpt4 key购买 nike

我在构建 REST API 时加载模型时遇到 Flask 问题。这是失败的代码行:

model = pickle.load(open("model.pkl","r"))

生成的异常回溯消息是:

TypeError: a bytes-like object is required, not 'str'

最佳答案

使用以下命令以二进制模式打开文件:

model = pickle.load(open("model.pkl","rb"))

关于python - 加载模型时出现类型错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53217689/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com