resnext_101_32x32d¶
The resnext_101_32x32d function constructs a ResNeXt-101 model with 32 groups and a base width of 32.
Total Parameters: 468,530,472
Function Signature¶
@register_model
def resnext_101_32x32d(num_classes: int = 1000, **kwargs) -> ResNeXt
Parameters¶
num_classes (int, optional): Number of output classes for the final fully connected layer. Default is 1000.
kwargs (dict, optional): Additional keyword arguments forwarded to ResNeXtConfig, excluding the preset layers, cardinality, and base_width fields.
Returns¶
ResNeXt: A ResNeXt-101 model instance with the preset (layers=[3, 4, 23, 3], cardinality=32, base_width=32).