当我使用PyTorch导入weak_script_method时,代码将引发错误:
从火炬._ jit_internal导入weak_script_method ImportError:无法 导入名称“ weak_script_method”
代码是:
from torch._jit_internal import weak_script_method
有人对此有想法吗?如何解决此错误?
答案 0 :(得分:0)
weak_script_method
的版本为_jit_internal.py
的{{1}}
您可以在此处查找:
https://github.com/pytorch/pytorch/blob/v1.1.0/torch/_jit_internal.py
在版本v1.1.0
中不再存在:
https://github.com/pytorch/pytorch/blob/v1.1.0/torch/_jit_internal.py
通过检查历史记录,您可以找到已删除所需功能的提交:
https://github.com/pytorch/pytorch/commit/10c4b98ade8349d841518d22f19a653a939e260c#diff-ee07db084d958260fd24b4b02d4f078d
我自己从来不需要v1.2.0
,也不知道您需要什么。 pytorch开发人员似乎不再需要它了。
祝你好运!