Enum MobileNetV3WidthMultiplier
Specifies the width multiplier for MobileNetV3.
public enum MobileNetV3WidthMultiplier
Fields
Alpha075 = 0Width multiplier of 0.75 - Compact model.
Alpha100 = 1Width multiplier of 1.0 - Standard model.
Remarks
The width multiplier (alpha) scales the number of channels in each layer. Smaller multipliers result in faster, more compact models at the cost of accuracy.
For Beginners: The width multiplier controls how "wide" the network is. A multiplier of 1.0 gives the standard network, while 0.75 uses 75% as many channels, making the network faster but potentially less accurate.