Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…dels into baorepo-patch-1
  • Loading branch information
rwightman committed Sep 22, 2024
2 parents 9337463 + d6b8816 commit a22ce0a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions timm/models/mobilenetv3.py
Original file line number Diff line number Diff line change
Expand Up @@ -1253,6 +1253,21 @@ def lcnet_150(pretrained: bool = False, **kwargs) -> MobileNetV3:
return model


@register_model
def mobilenetv4_conv_small_025(pretrained: bool = False, **kwargs) -> MobileNetV3:
""" MobileNet V4 """
model = _gen_mobilenet_v4('mobilenetv4_conv_small', 0.25, pretrained=pretrained, **kwargs)
return model


@register_model
def mobilenetv4_conv_small_050(pretrained: bool = False, **kwargs) -> MobileNetV3:
""" MobileNet V4 """
model = _gen_mobilenet_v4('mobilenetv4_conv_small', 0.50, pretrained=pretrained, **kwargs)
return model



@register_model
def mobilenetv4_conv_small(pretrained: bool = False, **kwargs) -> MobileNetV3:
""" MobileNet V4 """
Expand Down

0 comments on commit a22ce0a

Please sign in to comment.