We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I tried to using FSSD in live.py by adding the following code:
elif args.version == 'FSSD_vgg': from models.FSSD_vgg import build_net
And I have downloaded the pretrained model FSSD_vgg_VOC_epoches_270.pth,but here comes the error:
RuntimeError: Error(s) in loading state_dict for FSSD: Unexpected key(s) in state_dict: "L2Norm.weight".
How could I solve it?
The text was updated successfully, but these errors were encountered:
replace net.load_state_dict(new_state_dict) with net.load_state_dict(new_state_dict, strict=False) in the train_test.py works for me
net.load_state_dict(new_state_dict)
net.load_state_dict(new_state_dict, strict=False)
Sorry, something went wrong.
Thanks for your advice !
No branches or pull requests
Hi, I tried to using FSSD in live.py by adding the following code:
And I have downloaded the pretrained model FSSD_vgg_VOC_epoches_270.pth,but here comes the error:
How could I solve it?
The text was updated successfully, but these errors were encountered: