AttributeError: module 'torchvision.transforms' has no attribute 'Compose'
时间: 2023-06-21 20:10:44 浏览: 2005
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误通常是因为您的 PyTorch 和 torchvision 版本不兼容所致。您可以尝试通过以下命令升级 torchvision:
```
pip install --upgrade torchvision
```
如果问题仍然存在,您可以尝试降级 PyTorch 版本或使用较旧的 torchvision 版本,以确保它们兼容。
阅读全文