Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 532
Nagabhushan S N Avatar asked Feb 01 '19 09:02

Nagabhushan S N


2 Answers

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)
like image 194
Nagabhushan S N Avatar answered Dec 05 '22 16:12

Nagabhushan S N


You can find pretrained AlexNet model for keras here.

like image 30
xashru Avatar answered Dec 05 '22 15:12

xashru