mirror of
https://github.com/deepinsight/insightface.git
synced 2026-05-17 14:26:08 +00:00
15 lines
319 B
Python
15 lines
319 B
Python
|
|
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)]
|