mlr3 - confidence interval for predictions

301 Views Asked by At

After tuning a learner and using it, we can use it to make predictions through the command line

predict(Learner, newdata, predict_type="response")

But, how do we compute confidence intervals for predictions?


task <- TaskRegr$new("data", data, "y")
learner <- lrn("regr.xgboost")
preprocess <- po("scale", param_vals = list(center = TRUE, scale = TRUE))
pp <- preprocess %>>% learner
gg<- GraphLearner$new(pp)
gg$train(task)
predict(gg, newdata = pred, predict_type="reponse")
1

There are 1 best solutions below

0
On BEST ANSWER

Not all learners support prediction errors, xgboost being one of them. You'll have to use a different learner to get error estimates.