public static enum LossFunctions.LossFunction extends Enum<LossFunctions.LossFunction>
| Enum Constant and Description |
|---|
CUSTOM |
EXPLL |
MCXENT |
MSE |
NEGATIVELOGLIKELIHOOD |
RECONSTRUCTION_CROSSENTROPY |
RMSE_XENT |
SQUARED_LOSS |
XENT |
| Modifier and Type | Method and Description |
|---|---|
static LossFunctions.LossFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LossFunctions.LossFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LossFunctions.LossFunction MSE
public static final LossFunctions.LossFunction EXPLL
public static final LossFunctions.LossFunction XENT
public static final LossFunctions.LossFunction MCXENT
public static final LossFunctions.LossFunction RMSE_XENT
public static final LossFunctions.LossFunction SQUARED_LOSS
public static final LossFunctions.LossFunction RECONSTRUCTION_CROSSENTROPY
public static final LossFunctions.LossFunction NEGATIVELOGLIKELIHOOD
public static final LossFunctions.LossFunction CUSTOM
public static LossFunctions.LossFunction[] values()
for (LossFunctions.LossFunction c : LossFunctions.LossFunction.values()) System.out.println(c);
public static LossFunctions.LossFunction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All Rights Reserved.