public static enum DenseNet.VARIATION extends java.lang.Enum<DenseNet.VARIATION>
Enum Constant and Description |
---|
DENSENET121
DenseNet121 model variation.
|
DENSENET169
DENSENET169 model variation.
|
DENSENET201
DENSENET201 model variation.
|
Modifier and Type | Method and Description |
---|---|
static DenseNet.VARIATION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DenseNet.VARIATION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DenseNet.VARIATION DENSENET121
public static final DenseNet.VARIATION DENSENET169
public static final DenseNet.VARIATION DENSENET201
public static DenseNet.VARIATION[] values()
for (DenseNet.VARIATION c : DenseNet.VARIATION.values()) System.out.println(c);
public static DenseNet.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