AttributeError: module 'torchvision.datasets' has no attribute 'AlexNet'
时间: 2023-11-09 15:07:21 浏览: 174
导入FashionMNIST数据集时报错module ‘torchvision.datasets’ has no attribute ‘FashionMNIS’
这个错误提示表明在 torchvision.datasets 模块中没有名为 AlexNet 的属性。AlexNet 是一个经典的卷积神经网络模型,通常需要从其他库或来源中导入。
可以通过以下代码从 torch.hub 中导入 AlexNet 模型:
```
import torch
model = torch.hub.load('pytorch/vision', 'alexnet', pretrained=True)
```
阅读全文