Enum MobileNetV2WidthMultiplier
Specifies the width multiplier for MobileNetV2.
public enum MobileNetV2WidthMultiplier
Fields
Alpha035 = 0Width multiplier of 0.35 - Extremely compact model.
Alpha050 = 1Width multiplier of 0.5 - Very compact model.
Alpha075 = 2Width multiplier of 0.75 - Compact model.
Alpha100 = 3Width multiplier of 1.0 - Standard model.
Alpha125 = 4Width multiplier of 1.25 - Wider model for improved accuracy.
Alpha130 = 5Width multiplier of 1.3 - Wider model for higher accuracy.
Alpha140 = 6Width multiplier of 1.4 - Even wider model for maximum accuracy.
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.5 uses half as many channels, making the network faster but potentially less accurate.