googlenet¶
- torchvision.models.googlenet(*, weights: Optional[GoogLeNet_Weights] = None, progress: bool = True, **kwargs: Any) GoogLeNet[source]¶
GoogLeNet (Inception v1) model architecture from Going Deeper with Convolutions.
- Parameters:
weights (
GoogLeNet_Weights, optional) – The pretrained weights for the model. SeeGoogLeNet_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.GoogLeNetbase class. Please refer to the source code for more details about this class.