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
If users want to extract the hyperparameters that were used for a run, they can do this:
run= getOMLRun(2387921)
getOMLRunParList(run)
which returns only the hyperparameters that were different from the defaults in the mlr learner
This is a 'OMLRunParList' with the following parameters:
name value component
1: k 11 NA
If they also want to see the values of the other hyperparameters of the mlr learner (i.e. the default values for the other hyperparameters), they need to do this:
We should extend the getOMLRunParList function so that, e.g. getOMLRunParList(run, show.defaults = TRUE) shows also the defaults of the other hyperparameters.
If users want to extract the hyperparameters that were used for a run, they can do this:
which returns only the hyperparameters that were different from the defaults in the mlr learner
If they also want to see the values of the other hyperparameters of the mlr learner (i.e. the default values for the other hyperparameters), they need to do this:
We should extend the
getOMLRunParList
function so that, e.g.getOMLRunParList(run, show.defaults = TRUE)
shows also the defaults of the other hyperparameters.Maybe @PhilippPro , @DanielKuehn87 have also feedback here?
The text was updated successfully, but these errors were encountered: