convnext_small¶
- torchvision.models.convnext_small(*, weights: Optional[ConvNeXt_Small_Weights] = None, progress: bool = True, **kwargs: Any) ConvNeXt[source]¶
ConvNeXt Small model architecture from the A ConvNet for the 2020s paper.
- Parameters:
weights (
ConvNeXt_Small_Weights, optional) – The pretrained weights to use. SeeConvNeXt_Small_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.convnext.ConvNextbase class. Please refer to the source code for more details about this class.