Table of Contents

Enum MobileNetV3Variant

Namespace
AiDotNet.Enums
Assembly
AiDotNet.dll

Specifies the MobileNetV3 model variant.

public enum MobileNetV3Variant

Fields

Large = 0

MobileNetV3-Large: Higher accuracy variant.

Optimized for accuracy with more layers and higher computational cost.

Small = 1

MobileNetV3-Small: Lower latency variant.

Optimized for speed with fewer layers and lower computational cost.

Remarks

MobileNetV3 comes in two main variants: Large and Small. Large is optimized for high accuracy, while Small is optimized for low latency.

For Beginners: Choose Large for tasks where accuracy is most important, and Small for tasks where speed/latency is the priority.