19 lines
466 B
Python
19 lines
466 B
Python
checkpoint_config = dict(interval=1)
|
|
# Used in MMFewShot to identify the type task, we support mmcls and mmdet now
|
|
task_type = 'mmdet'
|
|
# yapf:disable
|
|
log_config = dict(
|
|
interval=50,
|
|
hooks=[
|
|
dict(type='TextLoggerHook'),
|
|
# dict(type='TensorboardLoggerHook')
|
|
])
|
|
# yapf:enable
|
|
custom_hooks = [dict(type='NumClassCheckHook')]
|
|
|
|
dist_params = dict(backend='nccl')
|
|
log_level = 'INFO'
|
|
load_from = None
|
|
resume_from = None
|
|
workflow = [('train', 1)]
|