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, thank you for sharing these codes.
However, I tried to run face_recovery.ipnyb and the following error:
face_recovery.ipnyb
UnpicklingError Traceback (most recent call last) in 1 net = LResNet100().eval().to(torch.device("cpu")) ----> 2 net.load_state_dict(torch.load("torchtest.pt"))
~/anaconda3/lib/python3.8/site-packages/torch/serialization.py in load(f, map_location, pickle_module, **pickle_load_args) 591 return torch.jit.load(opened_file) 592 return _load(opened_zipfile, map_location, pickle_module, **pickle_load_args) --> 593 return _legacy_load(opened_file, map_location, pickle_module, **pickle_load_args) 594 595
~/anaconda3/lib/python3.8/site-packages/torch/serialization.py in _legacy_load(f, map_location, pickle_module, **pickle_load_args) 760 "functionality.") 761 --> 762 magic_number = pickle_module.load(f, **pickle_load_args) 763 if magic_number != MAGIC_NUMBER: 764 raise RuntimeError("Invalid magic number; corrupt file?")
UnpicklingError: invalid load key, 'v'.
I found out that torchtest.pt, which should be the pretrained weight, is only 134 bytes.
torchtest.pt
I think you uploaded the wrong file.
It would be very nice if you could re-upload the weight file.
Thank you and have a great day :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, thank you for sharing these codes.
However, I tried to run
face_recovery.ipnyb
and the following error:UnpicklingError Traceback (most recent call last)
in
1 net = LResNet100().eval().to(torch.device("cpu"))
----> 2 net.load_state_dict(torch.load("torchtest.pt"))
~/anaconda3/lib/python3.8/site-packages/torch/serialization.py in load(f, map_location, pickle_module, **pickle_load_args)
591 return torch.jit.load(opened_file)
592 return _load(opened_zipfile, map_location, pickle_module, **pickle_load_args)
--> 593 return _legacy_load(opened_file, map_location, pickle_module, **pickle_load_args)
594
595
~/anaconda3/lib/python3.8/site-packages/torch/serialization.py in _legacy_load(f, map_location, pickle_module, **pickle_load_args)
760 "functionality.")
761
--> 762 magic_number = pickle_module.load(f, **pickle_load_args)
763 if magic_number != MAGIC_NUMBER:
764 raise RuntimeError("Invalid magic number; corrupt file?")
UnpicklingError: invalid load key, 'v'.
I found out that
torchtest.pt
, which should be the pretrained weight, is only 134 bytes.I think you uploaded the wrong file.
It would be very nice if you could re-upload the weight file.
Thank you and have a great day :)
The text was updated successfully, but these errors were encountered: