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)
You can find pretrained AlexNet
model for keras
here.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With