XGBoostError:basic_string::_M_replace_aux

问题描述 投票:0回答:1

我已经在 SageMaker 上训练了模型...解压 model.tar.gz 后,我得到了文件 xgboost-model,没有任何扩展名。

我使用以下代码加载模型:

import xgboost xgb_model_file = "**xgboost-model**" xgb_model = xgboost.Booster() xgb_model.load_model(xgb_model_file)

工作了 2 到 3 天,然后突然出现以下错误消息: XGBoostError:basic_string::_M_replace_aux

python amazon-sagemaker xgboost ml mlops
1个回答
0
投票
import xgboost 
xgb_model_file = "xgboost-model" 
xgb_model = xgboost.Booster() 
xgb_model.load_model(xgb_model_file)


This is more detail of the error message:
XGBoostError: basic_string::_M_replace_aux

Please can someone help?
© www.soinside.com 2019 - 2024. All rights reserved.