Open BalazsSzekeres opened 1 year ago
Modify the config file to use wandb in the following way:
vis_backends = [dict(type='LocalVisBackend'), dict(type='WandbVisBackend')]
visualizer = dict(
type='Det3DLocalVisualizer', vis_backends=vis_backends, name='visualizer')
I actually have the same issue and adding this to configs/pointpillars/pointpillars_hv_secfpn_sbn-all_16xb2-2x_waymo-3d-3class.py
did not solve the problem unfortunately. Any suggesttion?
Can be solved by this:
# add wandb
wandb.login(key=<Your Key>)
cfg['log_config'] = {'hooks': [
dict(type='TextLoggerHook'),
dict(type='MMDetWandbHook',
init_kwargs={'project': 'TrainPointPillars'},
interval=10,
log_checkpoint=True,
log_checkpoint_metadata=True,
num_eval_images=100,
bbox_score_thr=0.3)]}
Prerequisite
Task
I have modified the scripts/configs, or I'm working on my own tasks/models/datasets.
Branch
main branch https://github.com/open-mmlab/mmdetection3d
Environment
Using the provided docker file.
Reproduces the problem - code sample
Reproduces the problem - command or script
train.py
Reproduces the problem - error message
Additional information
No response