The weighted method for averaging metrics across classes may not be adequate.
Class weights are used to train the model, suggesting equal importance of classes. However, the one-vs-all metrics will be the weighted average across classes, with weights proportional to the cardinality of each class, suggesting unequal importance of classes.
The unweighted method for averaging metrics across classes may not be adequate.
Class weights are not used to train the model, suggesting unequal importance of classes. However, the one-vs-all metrics will be the arithmetic average across classes, suggesting equal importance of classes.