R/early_stop.R

Defines functions print.early_stop_spec early_stop

Documented in early_stop

#' Early Stopping Specification
#' 
#' @description
#' `early_stop()` is a helper function to be supplied on `early_stopping` arguments. 
#' 
#' @param patience Integer. Epochs to wait after last improvement. Default `5`.
#' @param min_delta Numeric. Minimum improvement to qualify as better. Default `1e-4`.
#' @param restore_best_weights Logical. Restore weights from best epoch. Default `TRUE`.
#' @param monitor Character. Metric to monitor. One of `"val_loss"` (default) or `"train_loss"`.
#'
#' @return An object of class `"early_stop_spec"`.
#' @export
early_stop = 
    function(
        patience = 5L,
        min_delta = 1e-4,
        restore_best_weights = TRUE,
        monitor = "val_loss"
    ) 
{
    monitor = rlang::arg_match(monitor, c("val_loss", "train_loss"))
    
    if (!is.numeric(patience) || patience < 1L) {
        cli::cli_abort("{.arg patience} must be a positive integer.")
    }
    if (!is.numeric(min_delta) || min_delta < 0) {
        cli::cli_abort("{.arg min_delta} must be non-negative.")
    }
    
    structure(
        list(
            patience = as.integer(patience),
            min_delta = min_delta,
            restore_best_weights = restore_best_weights,
            monitor = monitor
        ),
        class = "early_stop_spec"
    )
}

#' @export
print.early_stop_spec = function(x, ...) {
    cli::cli_h3("Early Stopping Spec")
    cli::cli_bullets(c(
        "*" = "Monitor: {x$monitor}",
        "*" = "Patience: {x$patience}",
        "*" = "Min delta: {x$min_delta}",
        "*" = "Restore best weights: {x$restore_best_weights}"
    ))
    invisible(x)
}

Try the kindling package in your browser

Any scripts or data that you put into this service are public.

kindling documentation built on March 3, 2026, 9:07 a.m.