You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Enhancement] .dev Python files updated to get better performance and syntax (open-mmlab#2020)
* logger hooks samples updated
* [Docs] Details for WandBLoggerHook Added
* [Docs] lint test pass
* [Enhancement] .dev Python files updated to get better performance and quality
* [Docs] Details for WandBLoggerHook Added
* [Docs] lint test pass
* [Enhancement] .dev Python files updated to get better performance and quality
* [Enhancement] lint test passed
* [Enhancement] Change Some Line from Previous to Support Python<3.9
* Update .dev/gather_models.py
Co-authored-by: Miao Zheng <[email protected]>
dict(type='MMSegWandbHook', by_epoch=False, init_kwargs={'entity': entity, 'project': project, 'config': cfg_dict}), # The Wandb logger is also supported, It requires `wandb` to be installed.
224
+
dict(type='MMSegWandbHook', by_epoch=False, # The Wandb logger is also supported, It requires `wandb` to be installed.
225
+
init_kwargs={'entity': "OpenMMLab", # The entity used to log on Wandb
226
+
'project': "MMSeg", # Project name in WandB
227
+
'config': cfg_dict}), # Check https://docs.wandb.ai/ref/python/init for more init arguments.
225
228
# MMSegWandbHook is mmseg implementation of WandbLoggerHook. ClearMLLoggerHook, DvcliveLoggerHook, MlflowLoggerHook, NeptuneLoggerHook, PaviLoggerHook, SegmindLoggerHook are also supported based on MMCV implementation.
226
229
])
230
+
227
231
dist_params =dict(backend='nccl') # Parameters to setup distributed training, the port can also be set.
228
232
log_level ='INFO'# The level of logging.
229
233
load_from =None# load models as a pre-trained model from a given path. This will not resume training.
0 commit comments