open-mmlab / mmdetection

OpenMMLab Detection Toolbox and Benchmark
https://mmdetection.readthedocs.io
Apache License 2.0
29.02k stars 9.36k forks source link

Additional metrics to tensorboard #11616

Open mzillag opened 5 months ago

mzillag commented 5 months ago

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?

mzillag commented 5 months ago

Thanks to this comment wrote my custom hook with additional metrics for validation for object detection.