vgg19¶
- torchvision.models.vgg19(*, weights: Optional[VGG19_Weights] = None, progress: bool = True, **kwargs: Any) VGG[source]¶
VGG-19 from Very Deep Convolutional Networks for Large-Scale Image Recognition.
- Parameters:
weights (
VGG19_Weights, optional) – The pretrained weights to use. SeeVGG19_Weightsbelow for more details, and possible values. By default, no pre-trained weights are used.progress (bool, optional) – If True, displays a progress bar of the download to stderr. Default is True.
**kwargs – parameters passed to the
torchvision.models.vgg.VGGbase class. Please refer to the source code for more details about this class.