Skip to content
Discussion options

You must be logged in to vote

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…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Borda
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants