Question about different average in Accuracy. #2516
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
The choice of averaging method for accuracy metrics depends on your specific goals and the class distribution in your dataset. For an imbalanced 4-category classification problem, balanced accuracy is often preferred because it equally weights the accuracy of each class, preventing dominant classes from skewing the overall metric. This is usually done by computing the recall (true positive rate) for each class independently and then averaging these scores (often called “macro” averaging). |
Beta Was this translation helpful? Give feedback.

The choice of averaging method for accuracy metrics depends on your specific goals and the class distribution in your dataset. For an imbalanced 4-category classification problem, balanced accuracy is often preferred because it equally weights the accuracy of each class, preventing dominant classes from skewing the overall metric. This is usually done by computing the recall (true positive rate) for each class independently and then averaging these scores (often called “macro” averaging).
If you want a single accuracy value that treats all classes fairly despite imbalance, use balanced accuracy (macro averaging of recalls), not the plain overall accuracy which can be biased towards majori…