mmdetection
mmdetection copied to clipboard
Additional metrics to tensorboard
Hello. While using mmdet2 I wrote custom tensorboard hook which uses this metrics
'val/bbox_mAP': 'Validate/Precision total',
'val/bbox_mAP_l': 'Validate/Precision large',
'val/bbox_mAP_m': 'Validate/Precision medium',
'val/bbox_mAP_s': 'Validate/Precision small',
How can I use same metrics during evaluation to save best model weights and to look at graphs in tensorboard?
Thanks to this comment wrote my custom hook with additional metrics for validation for object detection.