Learn R Programming

MLmetrics (version 1.1.0)

RMSLE: Root Mean Squared Logarithmic Error Loss

Description

Compute the root mean squared logarithmic error regression loss.

Usage

RMSLE(y_pred, y_true)

Arguments

y_pred
Estimated target values vector
y_true
Ground truth (correct) target values vector

Value

  • Root Mean Squared Logarithmic Error Loss

Examples

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

Run the code above in your browser using DataLab