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
Hi Team
Great work and thanks for your contribution!
I'm working on training the mask_rcnn_focalnet_small_patch4_mstrain_480-800_adamw_3x_coco_lrf.py with custom dataset in coco format.
The DistOptimizerHook has been depreciated from mmcv.runner.hooks.optimizer and has been recommended to use OptimizerHook replacing the same.
# do not use mmdet version fp16fp16=Noneoptimizer_config=dict(
type="DistOptimizerHook",
update_interval=1,
grad_clip=None,
coalesce=True,
bucket_size_mb=-1,
use_fp16=True,
)
I've replaced with below code which goes with default OptimizerHook
# do not use mmdet version fp16fp16=Noneoptimizer_config=dict(
grad_clip=None,
)
Hi Team
Great work and thanks for your contribution!
I'm working on training the mask_rcnn_focalnet_small_patch4_mstrain_480-800_adamw_3x_coco_lrf.py with custom dataset in coco format.
DistOptimizerHook
has been depreciated frommmcv.runner.hooks.optimizer
and has been recommended to useOptimizerHook
replacing the same.OptimizerHook
Would like to know recommended configuration with
fp16
andoptimizer_config
in placeDistOptimizerHook
for distributed training.The text was updated successfully, but these errors were encountered: