Search code examples
kerasdeep-learningpre-trained-modelvgg-net

Does keras have a pretrained AlexNet like VGG19?


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?


Solution

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