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