Question about different average in Accuracy. #2516
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.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm having a little hard time understanding the difference between different ways of averaging accuracy score. I got a imbalanced 4 categories classification problem and i'm attempting to compute the balanced_accuracy_score. I'm wondering which option should i choose

Beta Was this translation helpful? Give feedback.
All reactions