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