赞
踩
XGBRegressor
环境
核心代码
x, y = load_data()
model = xgb.XGBRegressor(learning_rate=0.05,
n_estimators=420,
max_depth=3,
min_child_weight=1,
gamma=0.0,
subsample=0.8,
colsample_bytree=0.8,
scale_pos_weight=0.8,
seed=42,
tree_method='gpu_hist',
gpu_id=3)
output = model.fit(x, y)
在2百万级的数据上耗时 34.344 s:
real 0m34.344s
user 4m46.866s
sys 0m22.178s
其中,重要的参数:
tree_method='gpu_hist'
gpu_id=3 表示使用第3块gpu
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。