R/plot_losses_from_train_v_from_file.R

Defines functions plot_losses_from_train_v_from_file

Documented in plot_losses_from_train_v_from_file

#' Plot the losses from training in time, for the validation set, from file
#'
#' Plot the losses from training in time, for the validation set, from file
#' @inheritParams default_params_doc
#' @return the filename where the plot is stored
#' @author Richèl J.C. Bilderbeek
#' @export
plot_losses_from_train_v_from_file <- function( # nolint indeed a long function name
  losses_from_train_v_filename,
  png_filename

) {
  losses_from_train_v_table <- gcaer::read_losses_from_train_v_file(
    losses_from_train_v_filename
  )
  gcaer::create_losses_from_train_v_through_time_png(
    losses_from_train_v_table = losses_from_train_v_table,
    png_filename = png_filename
  )
}
richelbilderbeek/gcaer documentation built on March 25, 2024, 3:08 p.m.