Yu
Results
1
issues of
Yu
Hello, I' building a model which contains a pre-trained teacher model as ``` def __init__(xxx, teacher_model_cfg=None): ... if teacher_model_cfg: self.teacher_model = builder.build_model(teacher_model_cfg) if self.teacher_model.init_cfg: initialize(self.teacher_model, self.teacher_model.init_cfg) for p in self.teacher_model.parameters():...
usage