xgboost使用GPU最佳实践

xgboost使用GPU最佳实践

首先更新xgboost到2.0.0

1
pip install xgboost -U 

这里给出一个使用GPU的例子,使用的是nvidia显卡

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import xgboost
import numpy as np
from scipy import stats

# 生成示例数据
np.random.seed(114514)
X = np.random.randn(100, 3) # 生成100个样本,每个样本有3个特征
y = stats.bernoulli.rvs(0.5, size=100) # 生成二分类标签,概率为0.5

# 设置参数
params = {
"device": "cuda"
}

# 创建DMatrix对象
Xy = xgboost.DMatrix(X, y)

# 训练模型
model = xgboost.train(params, Xy)

# 测试模型
test_array = np.random.randn(1, 3)
dtest = xgboost.DMatrix(test_array)
pred = model.predict(dtest)
print(pred)


xgboost使用GPU最佳实践
https://studyinglover.com/2023/10/18/xgboost使用GPU最佳实践/
作者
StudyingLover
发布于
2023年10月18日
许可协议