module 'torch' has no attribute 'load'
时间: 2023-11-30 20:42:38 浏览: 105
导入FashionMNIST数据集时报错module ‘torchvision.datasets’ has no attribute ‘FashionMNIS’
根据引用[2]的描述,这个错误通常是由于PyTorch的版本不兼容导致的。在旧版本的PyTorch中,'torch._six’模块已被移除,而在新版本中已经不再需要。因此,建议您检查您的PyTorch版本是否最新,如果不是最新版本,请尝试更新到最新版本。如果您已经使用的是最新版本的PyTorch,那么可能是您的代码中使用了已经被移除的模块或函数,您需要检查您的代码并将其更新为最新版本的PyTorch所支持的模块和函数。
```python
import torch
model = torch.load('model.pth')
```
阅读全文