Tensorboard and WandB metrics log #2263
-
Hi, I would like to ask how can I set the configs to use tensorboard and wandb to visualize my trainings. Tensorboard does not read the generated default logs, so I guess I'm missing something. I'm kind of new to this project so I'm trying to get the grasp of it to the maximum detail possible. For instance, I'm training with default
Am I right? My question is how should I compose them in the configs and how can I see them with analyze_logs.py. Thank you so much in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@ramajoballester Hi, thanks for your attention to our project. If you want to change the different visualizer backend, here: |
Beta Was this translation helpful? Give feedback.
@ramajoballester Hi, thanks for your attention to our project. If you want to change the different visualizer backend, here:
https://github.com/open-mmlab/mmdetection3d/blob/dev-1.x/configs/_base_/datasets/kitti-3d-3class.py#L130
You can set: vis_backend = [dict(type='WandbVisBackend')] or vis_backend = [dict(type='TensorboardVisBackend')], or vis_backend = [dict(type='WandbVisBackend'), dict(type='WandbVisBackend')] and so on.