default_runtime.py 485 Bytes
Newer Older
liyinhao's avatar
liyinhao committed
1
2
checkpoint_config = dict(interval=1)
# yapf:disable push
zhangwenwei's avatar
zhangwenwei committed
3
4
5
# By default we use textlogger hook and tensorboard
# For more loggers see
# https://mmcv.readthedocs.io/en/latest/api.html#mmcv.runner.LoggerHook
liyinhao's avatar
liyinhao committed
6
7
8
9
10
11
12
13
14
15
16
17
18
log_config = dict(
    interval=50,
    hooks=[
        dict(type='TextLoggerHook'),
        dict(type='TensorboardLoggerHook')
    ])
# yapf:enable
dist_params = dict(backend='nccl')
log_level = 'INFO'
work_dir = None
load_from = None
resume_from = None
workflow = [('train', 1)]