resnext101_64x4d¶
- torchvision.models.resnext101_64x4d(*, weights: Optional[ResNeXt101_64X4D_Weights] = None, progress: bool = True, **kwargs: Any) ResNet[source]¶
ResNeXt-101 64x4d model from Aggregated Residual Transformation for Deep Neural Networks.
- Parameters:
weights (
ResNeXt101_64X4D_Weights, optional) – The pretrained weights to use. SeeResNeXt101_64X4D_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.