CoolFace
Apppublic

jonigata/PoseMaker2

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
156likes
default_runtime.py21 linesDownload Raw Back to external
1checkpoint_config = dict(interval=10)2 3log_config = dict(4    interval=50,5    hooks=[6        dict(type='TextLoggerHook'),7        # dict(type='TensorboardLoggerHook')8        # dict(type='PaviLoggerHook') # for internal services9    ])10 11log_level = 'INFO'12load_from = None13resume_from = None14dist_params = dict(backend='nccl')15workflow = [('train', 1)]16 17# disable opencv multithreading to avoid system being overloaded18opencv_num_threads = 019# set multi-process start method as `fork` to speed up the training20mp_start_method = 'fork'21