Skip to content
Snippets Groups Projects
Commit 5f0e4cce authored by wanggh's avatar wanggh
Browse files

Merge branch 'master' into gpu3

parents 71d30a12 e71e01bb
No related branches found
No related tags found
1 merge request!3Gpu3
......@@ -51,5 +51,5 @@ distiller = dict(
]
)
student_cfg = 'configs/faster_rcnn/faster_rcnn_r152_fpn_1x_coco.py'
teacher_cfg = 'configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py'
student_cfg = 'configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py'
teacher_cfg = 'configs/faster_rcnn/faster_rcnn_r152_fpn_1x_coco.py'
......@@ -28,7 +28,7 @@ def merge(backbone, neck, head):
target['state_dict'] = dict()
tsd = target['state_dict']
bsd = backbone['state_dict']
nsd = backbone['state_dict']
nsd = neck['state_dict']
hsd = head['state_dict']
for key in bsd.keys():
if 'backbone' in key:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment