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
}
DavisVaughan/hardhat documentation built on Oct. 5, 2021, 9:53 a.m.