@@ -1011,6 +1011,13 @@ def _cfg(url: str = '', **kwargs):
1011
1011
),
1012
1012
"lcnet_150.untrained" : _cfg (),
1013
1013
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' ),
1014
1021
'mobilenetv4_conv_small.e2400_r224_in1k' : _cfg (
1015
1022
hf_hub_id = 'timm/' ,
1016
1023
test_input_size = (3 , 256 , 256 ), test_crop_pct = 0.95 , interpolation = 'bicubic' ),
@@ -1254,20 +1261,19 @@ def lcnet_150(pretrained: bool = False, **kwargs) -> MobileNetV3:
1254
1261
1255
1262
1256
1263
@register_model
1257
- def mobilenetv4_conv_small_025 (pretrained : bool = False , ** kwargs ) -> MobileNetV3 :
1264
+ def mobilenetv4_conv_small_035 (pretrained : bool = False , ** kwargs ) -> MobileNetV3 :
1258
1265
""" MobileNet V4 """
1259
- model = _gen_mobilenet_v4 ('mobilenetv4_conv_small ' , 0.25 , pretrained = pretrained , ** kwargs )
1266
+ model = _gen_mobilenet_v4 ('mobilenetv4_conv_small_035 ' , 0.35 , pretrained = pretrained , ** kwargs )
1260
1267
return model
1261
1268
1262
1269
1263
1270
@register_model
1264
1271
def mobilenetv4_conv_small_050 (pretrained : bool = False , ** kwargs ) -> MobileNetV3 :
1265
1272
""" MobileNet V4 """
1266
- model = _gen_mobilenet_v4 ('mobilenetv4_conv_small ' , 0.50 , pretrained = pretrained , ** kwargs )
1273
+ model = _gen_mobilenet_v4 ('mobilenetv4_conv_small_050 ' , 0.50 , pretrained = pretrained , ** kwargs )
1267
1274
return model
1268
1275
1269
1276
1270
-
1271
1277
@register_model
1272
1278
def mobilenetv4_conv_small (pretrained : bool = False , ** kwargs ) -> MobileNetV3 :
1273
1279
""" MobileNet V4 """
0 commit comments