This commit is contained in:
H-Liu1997
2024-10-09 17:05:46 +00:00
parent 1616c71309
commit f7b9a1c582
316 changed files with 54159 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
checkpoint_config = dict(interval=10)
log_config = dict(
interval=50,
hooks=[
dict(type='TextLoggerHook'),
# dict(type='TensorboardLoggerHook')
# dict(type='PaviLoggerHook') # for internal services
])
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'