R/compost.R

Defines functions compost

# This will eventually live in recipes
# https://github.com/tidymodels/recipes/issues/268

compost <- function(object) {
  if (!recipes::fully_trained(object)) {
    return(object)
  }

  object$template <- NULL
  object$retained <- FALSE

  object
}
tidymodels/hardhat documentation built on Sept. 26, 2024, 11:38 p.m.