mlr-org / mlr3measures

Performance measures used in mlr3
https://mlr3measures.mlr-org.com
GNU Lesser General Public License v3.0
13 stars 3 forks source link

Element with key 'classif.mauc_aunu' not found in DictionaryMeasure! #35

Closed aoandrade closed 2 years ago

aoandrade commented 2 years ago

Description

rr[[2]]$score(msr("classif.mauc_aunu"))
Error: Element with key 'classif.mauc_aunu' not found in DictionaryMeasure!

Reproducible example

rr[[2]]$score(msr("classif.mauc_aunu"))
Error: Element with key 'classif.mauc_aunu' not found in DictionaryMeasure!

All the measures below work, but not classif.mauc_aunu

rr[[2]]$score(msr("classif.acc")) # Classification Accuracy rr[[2]]$score(msr("classif.bacc")) # Balanced Accuracy rr[[2]]$score(msr("classif.ce")) # Classification Error rr[[2]]$score(msr("classif.logloss")) # logloss rr[[2]]$score(msr("classif.mbrier"))

mllg commented 2 years ago

These measures are not yet supported by mlr3, but will be in the next release (see https://github.com/mlr-org/mlr3/pull/844).