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