mobilenet_v1_050_cls(pretrained: bool = False, overrides: object = {})MobileNet-v1 image classifier at width multiplier .
Builds a MobileNetV1ForImageClassification with the
paper-cited 0.5-width topology — approximately 1.3M parameters
and 63.7% ImageNet-1k top-1 in Howard et al., 2017 (Table 7).
Model Size
Parameters
pretrainedbool= FalseReserved for future pretrained-weight loading. Currently
ignored.
**overridesobject= {}Keyword overrides forwarded into
MobileNetV1Config.Returns
MobileNetV1ForImageClassificationClassifier with the MobileNet-v1 ()
configuration applied (or with overrides merged on top
of it).
Notes
See Howard et al., "MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications", arXiv:1704.04861, 2017, Table 7.
Examples
>>> import lucid
>>> from lucid.models.vision.mobilenet import mobilenet_v1_050_cls
>>> model = mobilenet_v1_050_cls()
>>> x = lucid.randn(1, 3, 224, 224)
>>> out = model(x)
>>> out.logits.shape
(1, 1000)