泡菜属性错误:无法从';应用程序获取<;模块';上的属性';意愿。
问题描述
我已经运行我的代码来加载由PICKLE保存的变量。这是我的代码
import pickle
last_priors_file = open('simpanan/priors', 'rb')
priors = pickle.load(last_priors_file)
我得到的错误如下:AttributeError: Can't get attribute 'Wishart' on <module '__main__' from 'app.py'>
解决方案
发生这种情况是因为在脚本作为__name__ == '__main__'
运行时保存了已腌制的数据,因此它将Wishart
的位置另存为__main__.Wishart
。然后,当您运行下一个脚本来加载数据时,作用域中没有Wishart
,因此它失败。
这种情况下的解决方法是,只需在pickle.load
调用前添加from wherever import Wishart
。
相关文章