preds
and labels
, but cannot handle multiclass problems.df_medae(preds, labels)
predictions
.labels
.library(data.table)
# Regression problem
my_preds <- dnorm(rnorm(n = 9*6*10))
my_labels <- runif(n = 9*6*10)
df_medae(my_preds, my_labels)
Run the code above in your browser using DataLab