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