MobileNet-V2#
eqxvision.models.MobileNetV2
#
A simple port of torchvision.models.mobilenetv2
__init__(self, num_classes: int = 1000, width_mult: float = 1.0, inverted_residual_setting: Optional[List[List[int]]] = None, round_nearest: int = 8, block: Optional[eqx.Module] = None, norm_layer: Optional[eqx.Module] = None, dropout: float = 0.2, *, key: Optional[jax.random.PRNGKey] = None)
#
Arguments:
num_classes: Number of classes in the classification task. Also controls the final output shape(num_classes,). Defaults to1000width_mult: Adjusts number of channels in each layer by this amount inverted_residual_setting: Network structureinverted_residual_setting: Network structureround_nearest: Round the number of channels in each layer to be a multiple of this number Set to1to turn off roundingblock: Module specifying inverted residual building block for mobilenetnorm_layer: Module specifying the normalization layer to usedropout: The dropout probabilitykey: Ajax.random.PRNGKeyused to provide randomness for parameter initialisation. (Keyword only argument.)
__call__(self, x, *, key: jax.random.PRNGKey) -> Array
#
Arguments:
x: The inputJAXarraykey: Required parameter. Utilised by few layers such asDropoutorDropPath
eqxvision.models.mobilenet_v2(torch_weights: str = None, **kwargs: Any) -> MobileNetV2
#
Constructs a MobileNetV2 architecture from MobileNetV2: Inverted Residuals and Linear Bottlenecks.
Arguments:
torch_weights: APathorURLfor thePyTorchweights. Defaults toNone