openml / OpenML

Open Machine Learning
https://openml.org
BSD 3-Clause "New" or "Revised" License
662 stars 91 forks source link

Add MCC to evaluation measures for classification #191

Closed joaquinvanschoren closed 5 years ago

joaquinvanschoren commented 9 years ago

I received a request to add the Matthews correlation coefficient to the evaluation engine for classification. It can be straightforwardly derived from the confusion table: MCC = (TP * TN – FP * FN)/sqrt((TP+FP) (TP+FN) (FP+TN) (TN+FN)).

janvanrijn commented 5 years ago

Moved to eval engine repo