module 'torch' has no attribute 'expand_dims'
时间: 2023-09-20 16:05:08 浏览: 180
导入FashionMNIST数据集时报错module ‘torchvision.datasets’ has no attribute ‘FashionMNIS’
这个错误发生在你使用了 `torch.expand_dims()` 函数,但是 PyTorch 的版本可能比你的代码要老,因为 `torch.expand_dims()` 是在比较新的版本中才被引入的。如果你的 PyTorch 版本太老,那么你需要更新 PyTorch 或者使用其他方式实现类似的功能(比如使用 `torch.unsqueeze()` 函数)。你可以使用以下命令更新 PyTorch:
```
pip install torch --upgrade
```
如果你正在使用 conda,你可以使用以下命令:
```
conda upgrade pytorch
```
阅读全文