AttributeError: module 'torch' has no attribute 'longTensor'
时间: 2023-12-21 20:31:45 浏览: 289
关于.NET Attribute在数据校验中的应用教程
这个错误是由于torch模块中没有名为'longTensor'的属性引起的。可能是因为你使用的torch版本不兼容或安装有问题。解决这个问题的方法是卸载当前的torch版本,然后重新安装一个兼容的版本。
以下是解决这个问题的步骤:
1. 卸载当前的torch版本:
```shell
pip uninstall torch
```
2. 安装兼容的torch版本:
```shell
pip install torch==1.9.1
```
这样就可以解决AttributeError: module 'torch' has no attribute 'longTensor'的问题了。
阅读全文