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 — approximately 2.6M parameters. Sandler et al., 2018
(Table 4) report 69.8% ImageNet-1k top-1 accuracy with this
configuration, at roughly 60% of the FLOPs of the full-width
model.
Model Size
Parameters
pretrainedbool= FalseReserved for future pretrained-weight loading. Currently
ignored.
**overridesobject= {}Keyword overrides forwarded into
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)