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