【MMDetection】MMDetection中使用Wandb

路径

mmdetection/configs/_base_/default_runtime.py

使用说明

default_runtime.py中加入


log_config = dict(
    interval=50,
    hooks=[
        # dict(type='TextLoggerHook'),
        # dict(type='TensorboardLoggerHook'),
        dict(
            type='WandbLoggerHook',
            init_kwargs=dict(
                project='proj_name',
                name='user_name'
            )
        )
    ])

你可能感兴趣的:(#,mmdetection,python,开发语言)