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
Looking at the internals, there are some changes you could make to potentially get some speedups.
Inside tidymodels, I tend to use tidyverse functions (e.g. filter() and select()) instead of simpler functions. In our group, Simon wrote two blog posts (one and two) that showed significant speed-ups, especially when you do a lot fast computations (e.g. bootstrapping lm() and so on).
It might be work looking into some of those substitutions.
The text was updated successfully, but these errors were encountered:
Looking at the internals, there are some changes you could make to potentially get some speedups.
Inside tidymodels, I tend to use tidyverse functions (e.g.
filter()
andselect()
) instead of simpler functions. In our group, Simon wrote two blog posts (one and two) that showed significant speed-ups, especially when you do a lot fast computations (e.g. bootstrappinglm()
and so on).It might be work looking into some of those substitutions.
The text was updated successfully, but these errors were encountered: