report errors
RuntimeError: "unfolded2d_copy" not implemented for 'Half'
reason
Parameters use_half=true
passed in by the model, that is, the CPU is reasoned by using fp16 mixed precision calculation. Fp16 is used to speed up the speed, but the pytorch CPU does not support fp16,
Solution:
- Add use_half=False.
- Modify half() to float().
So that the model can be calculated;
Modification of my error report:
I hope this article is useful to you!
Thank you for your comments!