- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想保存并加载一个合适的随机森林分类器,但出现错误。
forest = RandomForestClassifier(n_estimators = 100, max_features = mf_val)
forest = forest.fit(L1[0:100], L2[0:100])
joblib.dump(forest, 'screening_forest/screening_forest.pkl')
forest2 = joblib.load('screening_forest/screening_forest.pkl')
错误是:
File "C:\Users\mkolarek\Documents\other\TrackerResultAnalysis\ScreeningClassif
ier\ScreeningClassifier.py", line 67, in <module>
forest2 = joblib.load('screening_forest/screening_forest.pkl')
File "C:\Python27\lib\site-packages\sklearn\externals\joblib\numpy_pickle.py",
line 425, in load
obj = unpickler.load()
File "C:\Python27\lib\pickle.py", line 858, in load
dispatch[key](self)
File "C:\Python27\lib\site-packages\sklearn\externals\joblib\numpy_pickle.py",
line 285, in load_build
Unpickler.load_build(self)
File "C:\Python27\lib\pickle.py", line 1217, in load_build
setstate(state)
File "_tree.pyx", line 2280, in sklearn.tree._tree.Tree.__setstate__ (sklearn\
tree\_tree.c:18350)
ValueError: Did not recognise loaded array layout
Press any key to continue . . .
我必须初始化 forest2 还是什么?
最佳答案
我用 cPickle 解决了这个问题:
with open('screening_forest/screening_forest.pickle', 'wb') as f:
cPickle.dump(forest, f)
with open('screening_forest/screening_forest.pickle', 'rb') as f:
forest2 = cPickle.load(f)
但 joblib 解决方案也可能有用。
关于python - 拯救随机森林,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27524939/
双系统grub意外消失怎么办? 不用重装系统、不用去维修店、不会丢数据,教你一招,完美恢复grub! 。 背景 我的电脑是windows和linux双系统,启动项使用的grub。某天
我正在尝试构建一个表,该表将充当第三方服务的批量同步队列。 下面的方法应该不言自明;但需要明确的是,它的目的是向 delayed_syncs 表中添加一个具有 status: :queued 的新可更
我需要在特殊情况下捕获 NameError。但我不想捕获 NameError 的所有子类。有办法实现吗? # This shall be catched begin String::NotExis
我正在使用以下方法发送电子邮件: class Communicate msg end end bcc 包含 4 或 5 个电子邮件地址。 在我的测试中,我注意到两件事: 即使其中一封电子邮件不是
我想知道如何在使用 lib Linear 的 Java API 时挽救所有预测结果。 由于有详细记录,人们可以使用以下代码来挽救预测的准确性: Feature[] instance = new Fea
在我的 Rails 3 应用程序中,我通过以下方式获取 path_info: Rails.application.routes.recognize_path(url, { :method => req
当我将 IO::popen 与不存在的命令一起使用时,我在屏幕上打印了一条错误消息: irb> IO.popen "fakefake" #=> # irb> (irb):1: command
例如,如果我尝试删除一个不存在的表,我将收到以下错误: "# ex if ex.cause.is_a?(PG::UndefinedTable) # do something else
我负责使用 Cucumber 测试非 Rails 网络应用程序。我已经启动并运行了基本测试,I.E.我可以做类似的事情 Then /^the page should have a header$/ d
我有以下表演 Action : def show @name = params[:id] rescue ActiveRecord::RecordNotFound redirect_to :
我是一名优秀的程序员,十分优秀!