RMSE: Root Mean Square Error Loss

View source: R/Regression.R

RMSER Documentation

Root Mean Square Error Loss

Description

Compute the root mean squared error regression loss.

Usage

RMSE(y_pred, y_true)

Arguments

y_pred

Estimated target values vector

y_true

Ground truth (correct) target values vector

Value

Root Mean Square Error Loss

Examples

data(cars)
reg <- lm(log(dist) ~ log(speed), data = cars)
RMSE(y_pred = exp(reg$fitted.values), y_true = cars$dist)

MLmetrics documentation built on May 29, 2024, 9:34 a.m.

Related to RMSE in MLmetrics...