Scikit-Learn’s fan
So far, Melody is a big fan of Scikit-Learn.
She hasn’t used it for too long, but every time she learns something new, there’s always an elegant way to do it using Scikit-Learn.
But today is perhaps the exception: Melody finished training a multi-class classification model, and after displaying Scikit-Learn’s classification report, she noticed something wasn’t right.
She has to analyze the Macro-average, Micro-average, and Weighted F1-Score values for her model, but the classification report doesn’t display the Micro-average F1-Score.
How can Melody move forward?
The Micro-average F1-Score is the same as the model’s accuracy. Melody can run her analysis using the accuracy of her model.
The Micro-average F1-Score is the same as the model’s precision. Melody can run her analysis using the precision of her model.
The Micro-average F1-Score is the same as the model’s recall. Melody can run her analysis using the recall of her model.
Melody will need to compute the Micro-average F1-Score of her model manually.