Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update boilerplate models #436

Closed
spsanderson opened this issue Apr 18, 2023 · 0 comments · Fixed by #442
Closed

Update boilerplate models #436

spsanderson opened this issue Apr 18, 2023 · 0 comments · Fixed by #442
Assignees
Labels
enhancement New feature or request

Comments

@spsanderson
Copy link
Owner

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))
@spsanderson spsanderson added the enhancement New feature or request label Apr 18, 2023
@spsanderson spsanderson self-assigned this Apr 18, 2023
@spsanderson spsanderson added this to the healthyR.ts 0.2.9 milestone Apr 20, 2023
spsanderson added a commit that referenced this issue Jun 15, 2023
@spsanderson spsanderson linked a pull request Jun 15, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Development

Successfully merging a pull request may close this issue.

1 participant