powered by
Compute the relative absolute error regression loss.
RAE(y_pred, y_true)
Relative Absolute Error Loss
Estimated target values vector
Ground truth (correct) target values vector
data(cars) reg <- lm(log(dist) ~ log(speed), data = cars) RAE(y_pred = exp(reg$fitted.values), y_true = cars$dist)
Run the code above in your browser using DataLab