#' Create a `losses_from_train_v_table` to be used in testing
#'
#' Create a `losses_from_train_v_table` to be used in testing
#' @return a `losses_from_train_v_table`
#' @examples
#' create_test_losses_from_train_v_table()
#' check_losses_from_train_v_table(create_test_losses_from_train_v_table())
#' @author Richèl J.C. Bilderbeek
#' @export
create_test_losses_from_train_v_table <- function() { # nolint indeed a long function name
tibble::tibble(
epoch = seq(1, 2),
losses_from_train_v = c(0.175, 0.177)
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.