efficientnet_v2_l¶
- torchvision.models.efficientnet_v2_l(*, weights: Optional[EfficientNet_V2_L_Weights] = None, progress: bool = True, **kwargs: Any) EfficientNet[source]¶
Constructs an EfficientNetV2-L architecture from EfficientNetV2: Smaller Models and Faster Training.
- Parameters:
weights (
EfficientNet_V2_L_Weights, optional) – The pretrained weights to use. SeeEfficientNet_V2_L_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.efficientnet.EfficientNetbase class. Please refer to the source code for more details about this class.