Loading VGG model

Do I need to download the pretrained VGG model and loaded into the model or just calling this function is enough to lead the model pretrained weights?
torchvision.models.vgg19(pretrained=True)

The method should download the weights if they haven’t been already downloaded, so you shouldn’t download anything manually.

1 Like