OpenMMLab Detection Toolbox and Benchmark
https://mmdetection.readthedocs.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
319 B
15 lines
319 B
5 years ago
|
checkpoint_config = dict(interval=1)
|
||
|
# yapf:disable
|
||
|
log_config = dict(
|
||
|
interval=50,
|
||
|
hooks=[
|
||
|
dict(type='TextLoggerHook'),
|
||
|
# dict(type='TensorboardLoggerHook')
|
||
|
])
|
||
|
# yapf:enable
|
||
|
dist_params = dict(backend='nccl')
|
||
|
log_level = 'INFO'
|
||
|
load_from = None
|
||
|
resume_from = None
|
||
|
workflow = [('train', 1)]
|