-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support mlr3 #13
Comments
After spending more time with this, I think our best approach here will to wait for more machinery from mlr3 folks before implementing anything more principled. Prediction in a new session works fine, so this shouldn't be a pain point! library(mlr3)
task <- tsk("mtcars")
fit <- lrn("regr.rpart")
# train a model of this learner for a subset of the task
fit$train(task, row_ids = 1:26)
callr::r(
function(fit) {
library(mlr3)
predict(fit, mtcars[27:32,])
},
args = list(fit = fit)
)
#> [1] 27.71429 16.87368 16.87368 16.87368 16.87368 16.87368 Created on 2022-07-18 by the reprex package (v2.0.1) |
Look for the fitted model object slot, these should wrap like caret or parsnip. |
I have started a discussion in mlr3 about serialization here: mlr-org/mlr3#891 |
Some work on the
mlr3
branch already.The text was updated successfully, but these errors were encountered: