Does keras have a pretrained AlexNet like VGG19?

Nagabhushan S N picture Nagabhushan S N · Feb 1, 2019 · Viewed 7.6k times · Source

If I want to use pretrained VGG19 network, I can simply do

from keras.applications.vgg19 import VGG19
VGG19(weights='imagenet')

Is there a similar implementation for AlexNet in keras or any other library?

Answer

Nagabhushan S N picture Nagabhushan S N · Apr 13, 2019

In case anyone comes here for a solution,
I found a pretrained alex net from PyTorch here

import torchvision.models as models
alexnet_model = models.alexnet(pretrained=True)