deep-head-pose
deep-head-pose copied to clipboard
AttributeError: module 'torchvision.transforms' has no attribute 'Scale'
How to fix this issue?
Scale have been depreciated in new pytorch version. Please use Resize() instead of Scale. It should solve your issue. https://discuss.pytorch.org/t/attributeerror-module-torchvision-transforms-has-no-attribute-scale/146687 Thanks.