()
| 180 | return model |
| 181 | |
| 182 | def load_ResNet152Model(): |
| 183 | model = ResNet(Bottleneck, [3, 8, 36, 3]) |
| 184 | copy_parameter_from_resnet(model, torchvision.models.resnet152(pretrained = True).state_dict()) |
| 185 | return model |
| 186 | |
| 187 | # model.load_state_dict(checkpoint['model_state_dict']) |
| 188 |
nothing calls this directly
no test coverage detected