public static enum EfficientNet.VARIATION extends java.lang.Enum<EfficientNet.VARIATION>
Enum Constant and Description |
---|
EFFICIENTNET_B0
B0 Size of EfficientNet.
|
EFFICIENTNET_B1
B1 Size of EfficientNet.
|
EFFICIENTNET_B2
B2 Size of EfficientNet.
|
EFFICIENTNET_B3
B3 Size of EfficientNet.
|
EFFICIENTNET_B4
B4 Size of EfficientNet.
|
EFFICIENTNET_B5
B5 Size of EfficientNet.
|
EFFICIENTNET_B6
B6 Size of EfficientNet.
|
EFFICIENTNET_B7
B7 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