AttributeError: module 'torch' has no attribute 'Tensor'
时间: 2023-09-21 07:03:18 浏览: 829
d2l中的torch模块
这个错误通常是因为你的 PyTorch 版本太低导致的,`Tensor` 类在较老的 PyTorch 版本中不被支持。解决这个问题的方法是升级 PyTorch 至最新版本。你可以使用下面的命令来升级 PyTorch:
```
pip install torch --upgrade
```
如果你使用的是 Anaconda,则可以使用下面的命令来升级 PyTorch:
```
conda upgrade pytorch
```
升级完成后,你可以重新运行你的代码,看是否能够解决这个问题。
阅读全文