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

Merge branch 'master' into gpu3

parents 5f0e4cce 4905bca8
No related branches found
No related tags found
1 merge request!3Gpu3
_base_ = [
'../../_base_/models/faster_rcnn_r50_fpn.py',
'../../_base_/datasets/coco_detection.py',
'../../_base_/schedules/schedule_1x.py', '../../_base_/default_runtime.py'
]
# model settings
find_unused_parameters=True
weight=0
distiller = dict(
type='BackboneDistiller',
teacher_pretrained = '/data/wanggh/project/pytorch/Swin-Transformer-Object-Detection/work_dirs/faster_rcnn_r152_fpn_1x_coco/latest.pth',
init_student = 'neck_head',
train_head = True,
distill_cfg = [ dict(feature_level = 0,
methods=[dict(type='MSELoss',
name='loss_mb_0',
student_channels = 256,
teacher_channels = 256,
weight = weight,
)
]
),
dict(feature_level = 1,
methods=[dict(type='MSELoss',
name='loss_mb_1',
student_channels = 512,
teacher_channels = 512,
weight = weight,
)
]
),
dict(feature_level = 2,
methods=[dict(type='MSELoss',
name='loss_mb_2',
student_channels = 1024,
teacher_channels = 1024,
weight = weight,
)
]
),
dict(feature_level = 3,
methods=[dict(type='MSELoss',
name='loss_mb_3',
student_channels = 2048,
teacher_channels = 2048,
weight = weight,
)
]
),
]
)
student_cfg = 'configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py'
teacher_cfg = 'configs/faster_rcnn/faster_rcnn_r152_fpn_1x_coco.py'
......@@ -32,9 +32,10 @@ class BackboneDistiller(BaseDetector):
self.teacher.eval()
self.student= build_detector(student_cfg.model,
self.student = build_detector(student_cfg.model,
train_cfg=student_cfg.get('train_cfg'),
test_cfg=student_cfg.get('test_cfg'))
self.student.init_weights()
if init_student:
assert init_student in ['neck', 'head', 'neck_head']
def check_key(key, init_student):
......
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