public static enum GraphWiseDgiLayerConfig.Discriminator extends java.lang.Enum<GraphWiseDgiLayerConfig.Discriminator>
| Enum Constant and Description |
|---|
BILINEAR
bilinear scoring function, sigmoid activated to produce probabilities (Velickovic et al., 2018)
|
| Modifier and Type | Method and Description |
|---|---|
static GraphWiseDgiLayerConfig.Discriminator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GraphWiseDgiLayerConfig.Discriminator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphWiseDgiLayerConfig.Discriminator BILINEAR
public static GraphWiseDgiLayerConfig.Discriminator 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 GraphWiseDgiLayerConfig.Discriminator[] values()
for (GraphWiseDgiLayerConfig.Discriminator c : GraphWiseDgiLayerConfig.Discriminator.values()) System.out.println(c);