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