-
-
Notifications
You must be signed in to change notification settings - Fork 5
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
Predict phase parameter optimization #212
Labels
Comments
can we add a simple example / task here so that we can work against that pls? |
We want to tune library("mlr3learners")
ll = lrn("classif.glmnet") on one of the paramsets ps1 = ParamSet$new(list(
ParamFct$new("s", levels = c("lambda.1se", "lambda.min"))
))
ps2 = ParamSet$new(list(
ParamFct$new("s", levels = c("lambda.1se", "lambda.min")),
ParamDbl$new("alpha", lower = 0, upper = 1)
))
|
Note to myself: nesting autotuners behaves differently from doing two different opt methods (for train and predict) simultaneously, because the one does nested resampling, the other only has one resampling level. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It should be possible to perform efficient optimization of predict phase parameters, maybe even simultaneously with (ordinary) train time parameters so that predict phase parameters are optimized in an inner loop apart from train time parameters.
This was our resolution for #50 (see #50 (comment)) but apparently we don't have an issue mentioning this specifically?
The text was updated successfully, but these errors were encountered: