Nothing
tune_models_grid_search_cv <- function(analysis_object, sampling_method, metrics, seed = 123, verbose = TRUE){
grid_hyperparams = hyperparams_grid(analysis_object$hyperparameters)
grid_control <- tune::control_grid(
allow_par = TRUE,
save_pred = TRUE,
save_workflow = TRUE,
parallel_over = NULL
)
tuner_object <- tune::tune_grid(
object = analysis_object$workflow,
resamples = sampling_method,
metrics = metrics,
control = grid_control,
grid = grid_hyperparams
)
return(tuner_object)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.