in_data = input.permute(0, 3, 1, 2).to(device) AttributeError: 'Tensor' object has no attribute 'permute'
时间: 2023-12-16 07:03:16 浏览: 191
Permute_3_3.4_WaitsUn.com.dmg
这个错误可能是因为您正在使用的PyTorch版本过低,而`permute`方法在该版本中不可用。`permute`方法是在PyTorch 0.4版本中引入的。请升级您的PyTorch版本以解决此问题。
您可以通过以下命令来安装最新版本的PyTorch:
```
pip install torch -U
```
如果您已经安装了最新版本的PyTorch,那么请确保您的输入张量的类型为`torch.Tensor`,而不是其他类型的张量。您可以使用`type(input)`命令来检查输入张量的类型。
阅读全文