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?
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)