我正在尝试在特定数据集上微调 GoogleNet 网络,但我无法加载它。我现在尝试的是:
model = torchvision.models.googlenet(pretrained=True)
但是我收到一个错误:
AttributeError: module 'torchvision.models' has no attribute 'googlenet'
我有最新版本的 torchvision 但重新安装以确保错误仍然存在。
我正在尝试在特定数据集上微调 GoogleNet 网络,但我无法加载它。我现在尝试的是:
model = torchvision.models.googlenet(pretrained=True)
但是我收到一个错误:
AttributeError: module 'torchvision.models' has no attribute 'googlenet'
我有最新版本的 torchvision 但重新安装以确保错误仍然存在。
您可以改用 GoogLeNetinception_v3
模型(“重新思考计算机视觉的初始架构”):
import torchvision
google_net = torchvision.models.inception_v3(pretrained=True)