Skip to content

Commit

Permalink
[Fix] :fix pretraied error (open-mmlab#5550)
Browse files Browse the repository at this point in the history
  • Loading branch information
BIGWangYuDong authored Jul 6, 2021
1 parent 221fe0e commit 7b5a58b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions configs/cascade_rcnn/cascade_mask_rcnn_r50_caffe_fpn_1x_coco.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

model = dict(
backbone=dict(
norm_cfg=dict(requires_grad=False), norm_eval=True, style='caffe'),
init_cfg=dict(
type='Pretrained',
checkpoint='open-mmlab://detectron2/resnet50_caffe'))
norm_cfg=dict(requires_grad=False),
norm_eval=True,
style='caffe',
init_cfg=dict(
type='Pretrained',
checkpoint='open-mmlab://detectron2/resnet50_caffe')))
img_norm_cfg = dict(
mean=[103.530, 116.280, 123.675], std=[1.0, 1.0, 1.0], to_rgb=False)
train_pipeline = [
Expand Down

0 comments on commit 7b5a58b

Please sign in to comment.