timm
/

Image Classification
timm
PyTorch
Safetensors

MobileNetV3 instead of MobileNetV4?

#4
by make-gyver - opened

'''
print(timm.create_model('mobilenetv4_conv_small', pretrained=True))
print(timm.create_model('mobilenetv4_conv_small.e1200_r224_in1k, pretrained=True))
print(timm.create_model('mobilenetv4_conv_small.e2400_r224_in1k, pretrained=True))
'''
all yield something that starts with
'''
MobileNetV3(...
'''
Shouldn't it be "MobileNetV4"?

PyTorch Image Models org
β€’
edited Oct 8

@make-gyver mnv4 is the same high-level structure as mnv3 hence it uses the existing model class to reduce replication and maintenance burden.

Sign up or log in to comment