Hi all, I have what I think should be an easy question. I am hoping to teach my students how to save models that were fit using tidymodels to use later. For example, they might use a model in a Shiny app. I think of this as a mini "put the model into production" exercise. Right now, I show them how to do this using saveRDS(), but it seems like that's a bad idea since it sucks a lot of memory. From this tidypredict info, it seems I should be using parse_model() and write_yml() instead? Maybe combined with something from butcher to make the file smaller? Can anyone direct me to an example where this is done? Thanks so much!