-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Description
Update boilerplate models with the following:
Current:
# Make final workflow
wflw_fit <- wflw %>%
tune::finalize_workflow(
tuned_results %>%
tune::show_best(metric = best_metric, n = Inf) %>%
dplyr::slice(1)
) %>%
parsnip::fit(rsample::training(splits))
Future:
# Make final workflow
wflw_fit <- wflw %>%
tune::finalize_workflow(
tuned_results %>%
tune::show_best(metric = best_metric, n = 1)
) %>%
parsnip::fit(rsample::training(splits))
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Projects
Status
Done