From a22466852d2b03145c0a67a1602179bf4b51700a Mon Sep 17 00:00:00 2001 From: Ross Wightman Date: Sun, 16 Jun 2024 10:51:00 -0700 Subject: [PATCH] Add 2400 epoch mobilenetv4 small weights, almost at paper, rounds to 73.8 --- timm/models/mobilenetv3.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/timm/models/mobilenetv3.py b/timm/models/mobilenetv3.py index 196aaceb..09f05890 100644 --- a/timm/models/mobilenetv3.py +++ b/timm/models/mobilenetv3.py @@ -996,6 +996,9 @@ default_cfgs = generate_default_cfgs({ ), "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'),