open-mmlab/mmrotate

[Feature] WANDB validation metrics

Open

#828 geöffnet am 24. Apr. 2023

Auf GitHub ansehen
 (1 Kommentar) (0 Reaktionen) (2 zugewiesene Personen)Python (641 Forks)github user discovery
good first issue

Repository-Metriken

Stars
 (2.141 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

What's the feature?

I'm running training sessions based on the REDET base config with an added WANDB hook:

base_cfg.log_config.hooks = [
    dict(type='TextLoggerHook'),
    dict(type='TensorboardLoggerHook'),
    dict(type='MMDetWandbHook',
         init_kwargs=train_cfg['wandb_config'],
         interval=10,
         log_checkpoint=False,
         log_checkpoint_metadata=False,
         num_eval_images=100,
         bbox_score_thr=0.3)
]

Currently the WANDB hook only reports mAP for validation epochs image

I need to track recall as well, which is calculated and available in the training log, but not in WANDB. Ideally, I'd like to also see recall and precision for various classes and object sizes.

Am I missing something about the hook? Do I need to create a new hook? If I do, how do I access all available metrics?

Any other context?

No response

Contributor Guide