RMSPE: Root Mean Square Percentage Error Loss

View source: R/Regression.R

RMSPER Documentation

Root Mean Square Percentage Error Loss

Description

Compute the root mean squared percentage error regression loss.

Usage

RMSPE(y_pred, y_true)

Arguments

y_pred

Estimated target values vector

y_true

Ground truth (correct) target values vector

Value

Root Mean Squared Percentage Error Loss

Examples

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

yanyachen/MLmetrics documentation built on April 16, 2024, 7:48 a.m.