Enum MobileNetV3Variant
Specifies the MobileNetV3 model variant.
public enum MobileNetV3Variant
Fields
Large = 0MobileNetV3-Large: Higher accuracy variant.
Optimized for accuracy with more layers and higher computational cost.
Small = 1MobileNetV3-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.