When evaluating models for a multi-class classification problem, which method computes the average metric score for each class, considering the other classes as the negative class?

  • Micro-averaging
  • Macro-averaging
  • Weighted averaging
  • Mini-batch averaging
Macro-averaging computes the average metric score for each class, treating all other classes as the "negative" class. It provides an equal weight to each class and is useful when you want to assess the model's overall performance while giving equal importance to each class, regardless of class size. Macro-averaging can be particularly useful in imbalanced multi-class classification problems.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *