-
Notifications
You must be signed in to change notification settings - Fork 244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
不能加载resnet50预训练文件 #73
Comments
本文1.3节给出了resnet50_v2.pth下载路径(initmodel目录包含该文件)。 |
非常谢谢,已经找到了!
…------------------ 原始邮件 ------------------
发件人: "hszhao/semseg" ***@***.***>;
发送时间: 2021年3月24日(星期三) 下午3:58
***@***.***>;
***@***.******@***.***>;
主题: Re: [hszhao/semseg] 不能加载resnet50预训练文件 (#73)
本文1.3节给出了resnet50_v2.pth下载路径(initmodel目录包含该文件)。
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Thanks very much! I also encountered this problem when I was doing pspnet! |
Hi |
https://drive.google.com/drive/folders/1Hrz1wOxOZm4nIIS7UMJeL79AQrdvpj6v |
代码里的'./initmodel/resnet50_v2.pth'没有给出,加载官方的pth文件报错
RuntimeError: Error(s) in loading state_dict for ResNet:
Missing key(s) in state_dict: "conv2.weight", "bn2.weight", "bn2.bias", "bn2.running_mean", "bn2.running_var", "conv3.weight", "bn3.weight", "bn3.bias", "bn3.running_mean", "bn3.running_var".
size mismatch for conv1.weight: copying a param with shape torch.Size([64, 3, 7, 7]) from checkpoint, the shape in current model is torch.Size([64, 3, 3, 3]).
size mismatch for layer1.0.conv1.weight: copying a param with shape torch.Size([64, 64, 1, 1]) from checkpoint, the shape in current model is torch.Size([64, 128, 1, 1]).
size mismatch for layer1.0.downsample.0.weight: copying a param with shape torch.Size([256, 64, 1, 1]) from checkpoint, the shape in current model is torch.Size([256, 128, 1, 1]).
The text was updated successfully, but these errors were encountered: