You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting an error message when implementing tidymodels functions for xgboost boosted tree model with GPU acceleration. Error reports problem with evals parameter in xgb.train
Reproducible example
Utilizing GPU-enabled xgboost version 2.1.3, accessed from Releases.
Package installation:
# Build and install xgboost with GPU support
wget https://github.com/dmlc/xgboost/releases/download/v2.1.3/xgboost_r_gpu_linux_2.1.3.tar.gz
Rscript -e "install.packages(c('data.table', 'jsonlite'))"
R CMD INSTALL ./xgboost_r_gpu_linux_2.1.3.tar.gz
I thought it was related to those issues as well since the info=list() param has been dropped from xgb.DMatrix.
However, I cloned the parsnip repo and excluded this parameter from xgb.DMatrix and the evals <- - error persists. I am installing this custom version of parsnip in my Apptainer definition file.
The problem
I am getting an error message when implementing
tidymodels
functions forxgboost
boosted tree model with GPU acceleration. Error reports problem withevals
parameter inxgb.train
Reproducible example
Utilizing GPU-enabled
xgboost
version2.1.3
, accessed from Releases.Package installation:
Reprex with
credit_data
example data:Reprex derived from GPU Computing with R presentation (slides 61 - 75)
@sigmafelix @kyle-messier
The text was updated successfully, but these errors were encountered: