将XGBoost模型转换为CoreML

时间:2017-07-05 17:07:25

标签: python ios xgboost coreml

我正在尝试将以下XGBoost模型转换为CoreML文件,但是我收到了错误。

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-
  packages/coremltools/converters/xgboost/_tree.py", line 48, in convert
return _MLModel(_convert_tree_ensemble(model, feature_names, target))
File "/usr/local/lib/python2.7/dist-
 packages/coremltools/converters/xgboost/_tree_ensemble.py", line 111, in convert_tree_ensemble
xgb_model_str = model.get_dump(with_stats=True, dump_format = 'json')
TypeError: get_dump() got an unexpected keyword argument 'dump_format'

我使用pip安装了xgboost。为什么会这样?

2 个答案:

答案 0 :(得分:0)

按照安装指南操作。不要使用pip install xgboost,否则你会在get_dump中遇到这个错误。有关详细信息,请参阅http://xgboost.readthedocs.io/en/latest/build.html

答案 1 :(得分:0)

我拥有xgboost 0.61的版本,而我移至0.81,这解决了我的问题。