workboots
workboots copied to clipboard
speed-ups
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.
Thanks! I'll take a look at those resources