-
Notifications
You must be signed in to change notification settings - Fork 1
Problem with using tidy()
(S3 registration) on Windows in parallel
#64
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
Comments
Same results on both R-4.2.2 and R-4.1.2. |
Thanks for the report @icejean! 🙌 We have some tests of parallel PSOCK resampling that we run everyday, but I am noticing that we don't have any test of using |
tidy()
(S3 registration) on Windows in parallel
Great! |
We wouldn't expect any package to be available in psock clusters (unlike multicore). To make sure that you have them available, you can load them in the extract: get_model <- function(x) {
library(broom). #<- add this as needed
extract_fit_parsnip(x) %>% tidy()
} |
Thanks Max, it works. I've read your book 'Tidy Modeling with R' before, the issue comes from the book, it's a good book for learning the tidyverse series. |
Hi,all,
I'm reading this book to get to know with tidymodels, and get an problem with running parallel resampling on Windows.
As to the examples in Chapter 10, the main parallel part of fit_resamples() is O.K. with library doParallel on Windows, but only one issue with extract_fit_parsnip(x):
Any idea?
Best regards.
The text was updated successfully, but these errors were encountered: