@@ -1011,6 +1011,13 @@ def _cfg(url: str = '', **kwargs):
10111011 ),
10121012 "lcnet_150.untrained" : _cfg (),
10131013
1014+ 'mobilenetv4_conv_small_035.untrained' : _cfg (
1015+ mean = IMAGENET_INCEPTION_MEAN , std = IMAGENET_INCEPTION_STD ,
1016+ test_input_size = (3 , 256 , 256 ), test_crop_pct = 0.95 , interpolation = 'bicubic' ),
1017+ 'mobilenetv4_conv_small_050.e3000_r224_in1k' : _cfg (
1018+ hf_hub_id = 'timm/' ,
1019+ mean = IMAGENET_INCEPTION_MEAN , std = IMAGENET_INCEPTION_STD ,
1020+ test_input_size = (3 , 256 , 256 ), test_crop_pct = 0.95 , interpolation = 'bicubic' ),
10141021 'mobilenetv4_conv_small.e2400_r224_in1k' : _cfg (
10151022 hf_hub_id = 'timm/' ,
10161023 test_input_size = (3 , 256 , 256 ), test_crop_pct = 0.95 , interpolation = 'bicubic' ),
@@ -1253,6 +1260,20 @@ def lcnet_150(pretrained: bool = False, **kwargs) -> MobileNetV3:
12531260 return model
12541261
12551262
1263+ @register_model
1264+ def mobilenetv4_conv_small_035 (pretrained : bool = False , ** kwargs ) -> MobileNetV3 :
1265+ """ MobileNet V4 """
1266+ model = _gen_mobilenet_v4 ('mobilenetv4_conv_small_035' , 0.35 , pretrained = pretrained , ** kwargs )
1267+ return model
1268+
1269+
1270+ @register_model
1271+ def mobilenetv4_conv_small_050 (pretrained : bool = False , ** kwargs ) -> MobileNetV3 :
1272+ """ MobileNet V4 """
1273+ model = _gen_mobilenet_v4 ('mobilenetv4_conv_small_050' , 0.50 , pretrained = pretrained , ** kwargs )
1274+ return model
1275+
1276+
12561277@register_model
12571278def mobilenetv4_conv_small (pretrained : bool = False , ** kwargs ) -> MobileNetV3 :
12581279 """ MobileNet V4 """
0 commit comments