When I use PyTorch to import weak_script_method, the code throws an error:
from torch._jit_internal import weak_script_method ImportError: cannot import name 'weak_script_method'
The code is:
from torch._jit_internal import weak_script_method
Does anyone have an idea about this? How to fix this error?
torch
that doesn't haveweak_script_method
. What is you torch version? (print(torch.__version__)
) – peer