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
mlr3 now supports the "internal_tuning" property, which can be implemented for learners that internally tune some hyperparameter. CV glmnet has this property, as it is able to tune the lambda.
However, to implement this property it must also be possible to set the internally tuneable parameter (lambda) to a specific value so that we can use it with an AutoTuner (lambda = to_tune(internal = TRUE)).
We would therefore have to add this parameter tocv.glmnet.
The text was updated successfully, but these errors were encountered:
mlr3
now supports the"internal_tuning"
property, which can be implemented for learners that internally tune some hyperparameter. CV glmnet has this property, as it is able to tune the lambda.However, to implement this property it must also be possible to set the internally tuneable parameter (
lambda
) to a specific value so that we can use it with anAutoTuner
(lambda = to_tune(internal = TRUE)
).We would therefore have to add this parameter to
cv.glmnet
.The text was updated successfully, but these errors were encountered: