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

fix bugs

parent 59d8aef4
No related branches found
No related tags found
No related merge requests found
......@@ -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