mirror of
https://github.com/huggingface/pytorch-image-models.git
synced 2025-06-03 15:01:08 +08:00
Merge branch 'patch-1' of https://github.com/baorepo/pytorch-image-models into baorepo-patch-1
This commit is contained in:
commit
a22ce0a329
@ -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 """
|
||||
|
Loading…
x
Reference in New Issue
Block a user