Learn R Programming

luz (version 0.5.0)

luz_metric_mae: Mean absolute error

Description

Computes the mean absolute error.

Usage

luz_metric_mae()

Arguments

Value

Returns new luz metric.

See Also

Other luz_metrics: luz_metric(), luz_metric_accuracy(), luz_metric_binary_accuracy(), luz_metric_binary_accuracy_with_logits(), luz_metric_binary_auroc(), luz_metric_mse(), luz_metric_multiclass_auroc(), luz_metric_rmse()

Examples

Run this code
if (torch::torch_is_installed()) {
library(torch)
metric <- luz_metric_mae()
metric <- metric$new()
metric$update(torch_randn(100), torch_randn(100))
metric$compute()
}

Run the code above in your browser using DataLab