I’m trying to change the width_mult=1.9 in Mobilenet_v3_large but getting the following error:
model = torchvision.models.mobilenet_v3_large(pretrained=True, width_mult=1.9, reduced_tail=False, dilated=False)
RuntimeError: Error(s) in loading state_dict for MobileNetV3:
size mismatch for features.0.0.weight: copying a param with shape torch.Size([16, 3, 3, 3]) from checkpoint, the shape in current model is torch.Size([32, 3, 3, 3]).
size mismatch for features.0.1.weight: copying a param with shape torch.Size([16]) from checkpoint, the shape in current model is torch.Size([32]).