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