我已经在 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
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?