module 'torchvision.transforms' has no attribute 'InterpolationMode'怎么办
时间: 2023-06-22 11:47:01 浏览: 1625
导入FashionMNIST数据集时报错module ‘torchvision.datasets’ has no attribute ‘FashionMNIS’
如果你在使用`torchvision.transforms`库中的某个函数时提示`module 'torchvision.transforms' has no attribute 'InterpolationMode'`,那么很可能是你的PyTorch版本太低了,因为`InterpolationMode`是在PyTorch的1.6版本中引入的。
要解决这个问题,你可以尝试更新你的PyTorch版本到1.6或更高版本。如果你使用的是Anaconda,可以通过以下命令更新PyTorch:
```
conda install pytorch torchvision -c pytorch
```
如果你使用的是pip安装的PyTorch,可以使用以下命令更新:
```
pip install torch torchvision -U
```
更新完成后,你就可以使用`torchvision.transforms`库中的`InterpolationMode`枚举了。
阅读全文