public static enum EfficientNet.VARIATION extends java.lang.Enum<EfficientNet.VARIATION>
| Enum Constant and Description | 
|---|
| EFFICIENTNET_B0B0 Size of EfficientNet. | 
| EFFICIENTNET_B1B1 Size of EfficientNet. | 
| EFFICIENTNET_B2B2 Size of EfficientNet. | 
| EFFICIENTNET_B3B3 Size of EfficientNet. | 
| EFFICIENTNET_B4B4 Size of EfficientNet. | 
| EFFICIENTNET_B5B5 Size of EfficientNet. | 
| EFFICIENTNET_B6B6 Size of EfficientNet. | 
| EFFICIENTNET_B7B7 Size of EfficientNet. | 
| Modifier and Type | Method and Description | 
|---|---|
| static EfficientNet.VARIATION | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static EfficientNet.VARIATION[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final EfficientNet.VARIATION EFFICIENTNET_B0
public static final EfficientNet.VARIATION EFFICIENTNET_B1
public static final EfficientNet.VARIATION EFFICIENTNET_B2
public static final EfficientNet.VARIATION EFFICIENTNET_B3
public static final EfficientNet.VARIATION EFFICIENTNET_B4
public static final EfficientNet.VARIATION EFFICIENTNET_B5
public static final EfficientNet.VARIATION EFFICIENTNET_B6
public static final EfficientNet.VARIATION EFFICIENTNET_B7
public static EfficientNet.VARIATION[] values()
for (EfficientNet.VARIATION c : EfficientNet.VARIATION.values()) System.out.println(c);
public static EfficientNet.VARIATION valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null