R/regr_mse.R

Defines functions mse

Documented in mse

#' @title Mean Squared Error
#'
#' @details
#' The Mean Squared Error is defined as \deqn{
#'   \frac{1}{n} w_i \sum_{i=1}^n \left( t_i - r_i \right)^2.
#' }{
#'   weighted.mean((t - r)^2, w).
#' }
#'
#' @templateVar mid mse
#' @template regr_template
#'
#' @inheritParams regr_params
#' @template regr_example
#' @export
mse = function(truth, response, sample_weights = NULL, ...) {
  assert_regr(truth, response = response)
  wmean(.se(truth, response), sample_weights)
}

#' @include measures.R
add_measure(mse, "Mean Squared Error", "regr", 0, Inf, TRUE, obs_loss = "se")

Try the mlr3measures package in your browser

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

mlr3measures documentation built on Aug. 5, 2022, 5:22 p.m.