public static enum ResNet.VARIATION extends java.lang.Enum<ResNet.VARIATION>
Enum Constant and Description |
---|
RESNET101
ResNet101 version.
|
RESNET101V2
ResNet101v2 version.
|
RESNET152
ResNet152 version.
|
RESNET152V2
ResNet152v2 version.
|
RESNET50
ResNet50 version.
|
RESNET50V2
ResNet50v2 version.
|
Modifier and Type | Method and Description |
---|---|
static ResNet.VARIATION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResNet.VARIATION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResNet.VARIATION RESNET50
public static final ResNet.VARIATION RESNET50V2
public static final ResNet.VARIATION RESNET101
public static final ResNet.VARIATION RESNET101V2
public static final ResNet.VARIATION RESNET152
public static final ResNet.VARIATION RESNET152V2
public static ResNet.VARIATION[] values()
for (ResNet.VARIATION c : ResNet.VARIATION.values()) System.out.println(c);
public static ResNet.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