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
When optimizing the hyperparematers of some model, the user needs to choose a reasonable range of values over which to search (using a Grid or RandomSearch, say). We should like to include in the model metadata default choices for these ranges. R’s caret package already has this information for over 200 models, and one idea is to scrape the data from there (assuming there is no IP issue preventing this). However, there need not be a precise one-to-one correspondence between hyperparameter names, and so forth, so you would take your time sorting out the correspondence. Even if we did this for a dozen of the most popular models, this would be a nice enhancement.
When optimizing the hyperparematers of some model, the user needs to choose a reasonable range of values over which to search (using a
Grid
orRandomSearch
, say). We should like to include in the model metadata default choices for these ranges. R’s caret package already has this information for over 200 models, and one idea is to scrape the data from there (assuming there is no IP issue preventing this). However, there need not be a precise one-to-one correspondence between hyperparameter names, and so forth, so you would take your time sorting out the correspondence. Even if we did this for a dozen of the most popular models, this would be a nice enhancement.So
nothing
means "none defined yet".The manual explains how to set these traits for a model: search for
hyperparameter_ranges
in this section.The text was updated successfully, but these errors were encountered: