Open DrJerryTAO opened 6 days ago
The "reg:quantileerror" objective was added in XGBoost 2.0, which isn't available on CRAN. You should install the R package from the source to use the feature.
@hcho3 thanks. Could you address xgb.plot.tree()
and objective = 'reg:pseudohubererror'
bugs? How do we install from the source? I did not see sample codes for R.
Hi @mattn, I wanted to use XGBoost for quantile regression but found that the loss function of pseudo Huber error does no better than a null model. Currently,
objective = 'reg:pseudohubererror'
predicts every case as 0.5, with no information learnt at all no matter how other parameters are specified.Also,
xgb.plot.tree()
shows nothing. The Viewer panel is blank.Further,
objective = "reg:quantileerror"
results in error although the online documentation mentions it https://xgboost.readthedocs.io/en/latest/parameter.html. I am using the latest R version 1.7.8.1.