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
Hi, I am just coming back from teaching a tidymodels workshop (tidymodels is fun to teach!). I wonder whether it might make sense to add a function, e.g., training_validation() that can be used to extract the full training set at the end. That is assuming one wants to build the final model on the latter. Right now, one would do this manually I think, e.g., below:
Thanks for the request and nice to hear that it's fun to teach tidymodels! Have you seen last_fit() from tune for that final model fit? It has an argument add_validation_set which allows you to specify that both the training and validation set are used to train that final model. https://tune.tidymodels.org/reference/last_fit.html
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.
Hi, I am just coming back from teaching a tidymodels workshop (tidymodels is fun to teach!). I wonder whether it might make sense to add a function, e.g.,
training_validation()
that can be used to extract the full training set at the end. That is assuming one wants to build the final model on the latter. Right now, one would do this manually I think, e.g., below:The text was updated successfully, but these errors were encountered: