Table of Contents

Enum MobileNetV3WidthMultiplier

Namespace
AiDotNet.Enums
Assembly
AiDotNet.dll

Specifies the width multiplier for MobileNetV3.

public enum MobileNetV3WidthMultiplier

Fields

Alpha075 = 0

Width multiplier of 0.75 - Compact model.

Alpha100 = 1

Width 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.