paddle 2.2.2提示 in_data = input.transpose([0, 3, 1, 2]).to(device) AttributeError: 'Tensor' object has no attribute 'to'
时间: 2024-04-30 19:24:28 浏览: 184
X2Paddle-develop.zip
这个错误可能是因为你的`input`张量不是PaddlePaddle Tensor类型,所以它没有`to`方法。你可以尝试将`input`张量转换为PaddlePaddle Tensor类型,然后再使用`to`方法将其传输到设备上,如下所示:
```python
import paddle
device = paddle.set_device('gpu')
input = paddle.to_tensor(input)
in_data = input.transpose([0, 3, 1, 2]).to(device)
```
请注意,如果你的设备不是GPU,则将`paddle.set_device('gpu')`更改为`paddle.set_device('cpu')`。
阅读全文