gpt4 book ai didi

python - Xgboost (GPU) 在预测时崩溃

转载 作者:行者123 更新时间:2023-12-01 01:42:32 25 4
gpt4 key购买 nike

我在 Python 中使用 XGBoost GPU 版本,每当我尝试运行 .predict 时它都会崩溃。它适用于较小的数据集,但对于我当前的问题,它不起作用。

train_final.shape, test_final.shape
((631761, 174), (421175, 174))


params = {
'objective': 'multi:softmax',
'eval_metric': 'mlogloss',
'eta': 0.1,
'max_depth': 6,
'nthread': 4,
'alpha':0,
'num_class': 5,
'random_state': 42,
'tree_method': 'gpu_hist',
'silent': True
}

GPU 统计数据:GTX 1070,6 GB内存:32 GB

有人可以帮我理解为什么会发生这种情况吗?

最佳答案

Saving the model, deleting the booster then loading the model again should achieve this.

# training
bst = xgb.train(param, dtrain, num_round)

#save model
joblib.dump(bst, 'xgb_model.dat')
bst.__del__()

#load saved model
bst = joblib.load('xgb_model.dat')
preds = bst.predict(dtest)

关于python - Xgboost (GPU) 在预测时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51737614/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com