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.
19 lines
475 B
19 lines
475 B
checkpoint_config = dict(interval=10)
|
|
|
|
log_config = dict(
|
|
interval=50,
|
|
hooks=[
|
|
dict(type='TextLoggerHook'),
|
|
# dict(type='TensorboardLoggerHook')
|
|
])
|
|
|
|
log_level = 'INFO'
|
|
load_from = None
|
|
resume_from = None
|
|
dist_params = dict(backend='nccl')
|
|
workflow = [('train', 1)]
|
|
|
|
# disable opencv multithreading to avoid system being overloaded
|
|
opencv_num_threads = 0
|
|
# set multi-process start method as `fork` to speed up the training
|
|
mp_start_method = 'fork'
|
|
|