resnext101_32x8d¶
- torchvision.models.resnext101_32x8d(*, weights: Optional[ResNeXt101_32X8D_Weights] = None, progress: bool = True, **kwargs: Any) ResNet[source]¶
ResNeXt-101 32x8d model from Aggregated Residual Transformation for Deep Neural Networks.
- Parameters:
weights (
ResNeXt101_32X8D_Weights, optional) – The pretrained weights to use. SeeResNeXt101_32X8D_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.resnet.ResNetbase class. Please refer to the source code for more details about this class.