You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In metric_callbacks.py, lines 34-36 def _metrics_factory(self, by_class=False): average = None if by_class else "micro" average_iou = None if by_class else "macro" # special case, only mean IoU is of interest
This results in equal metrics of overall accuracy, recall, precision and f1-score. Wouldn't it be better to average 'macro', as the resulting metrics would be unambiguous?
(except for accuracy)
The text was updated successfully, but these errors were encountered:
In metric_callbacks.py, lines 34-36
def _metrics_factory(self, by_class=False): average = None if by_class else "micro" average_iou = None if by_class else "macro" # special case, only mean IoU is of interest
This results in equal metrics of overall accuracy, recall, precision and f1-score. Wouldn't it be better to average 'macro', as the resulting metrics would be unambiguous?
(except for accuracy)
The text was updated successfully, but these errors were encountered: