mobilenet_v2_075(pretrained: bool = False, overrides: object = {})MobileNet-v2 backbone at width multiplier .
Builds a MobileNetV2 with every channel count multiplied
by 0.75 — 1.36M parameters headless (2.64M with the classifier
head).
Sandler et al., 2018 has no row: Table 4
tabulates only 1.0 and 1.4, and 0.75 appears solely in Figure 5's
caption as a point on a curve. The often-quoted 69.8% top-1 is
the TF model-zoo figure for mobilenet_v2_0.75_224, not a paper
result, and the paper's 300M MAdds is for
only — it supports no FLOP ratio for this width.
Model Size
Parameters
pretrainedbool= False**overridesobject= {}MobileNetV2Config.Returns
MobileNetV2Backbone with the MobileNet-v2 ()
configuration applied (or with overrides merged on top
of it).
Notes
See Sandler et al., "MobileNetV2: Inverted Residuals and Linear Bottlenecks", CVPR 2018 (arXiv:1801.04381), Table 4. The head expansion remains at 1280 channels — narrow variants do not shrink the head below 1280.
Examples
>>> import lucid
>>> from lucid.models.vision.mobilenet_v2 import mobilenet_v2_075
>>> model = mobilenet_v2_075()
>>> x = lucid.randn(1, 3, 224, 224)
>>> out = model(x)
>>> out.last_hidden_state.shape
(1, 1280, 1, 1)