AttributeError: module 'torchvision.transforms' has no attribute 'toPILImage'
时间: 2023-09-11 22:07:17 浏览: 229
AttributeError: module 'tensorflow.compat.v1' has no attribute '
`toPILImage`方法在PyTorch的早期版本中是存在的,但在较新的版本中被弃用了。相反,使用`ToPILImage`方法,它是在`torchvision.transforms`模块中的一个类。
您可以尝试使用以下代码:
```python
from torchvision.transforms import ToPILImage
transform = ToPILImage()
pil_image = transform(tensor_image)
```
这应该可以解决您的问题。
阅读全文