diff --git a/timm/models/mobilenetv3.py b/timm/models/mobilenetv3.py index 196aaceba..09f05890e 100644 --- a/timm/models/mobilenetv3.py +++ b/timm/models/mobilenetv3.py @@ -996,6 +996,9 @@ def _cfg(url: str = '', **kwargs): ), "lcnet_150.untrained": _cfg(), + 'mobilenetv4_conv_small.e2400_r224_in1k': _cfg( + hf_hub_id='timm/', + test_input_size=(3, 256, 256), test_crop_pct=0.95, interpolation='bicubic'), 'mobilenetv4_conv_small.e1200_r224_in1k': _cfg( hf_hub_id='timm/', test_input_size=(3, 256, 256), test_crop_pct=0.95, interpolation='bicubic'),