Package oracle.pgx.config.mllib
Enum GraphWiseDgiLayerConfig.Discriminator
- java.lang.Object
-
- java.lang.Enum<GraphWiseDgiLayerConfig.Discriminator>
-
- oracle.pgx.config.mllib.GraphWiseDgiLayerConfig.Discriminator
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GraphWiseDgiLayerConfig.Discriminator>
- Enclosing class:
- GraphWiseDgiLayerConfig
public static enum GraphWiseDgiLayerConfig.Discriminator extends java.lang.Enum<GraphWiseDgiLayerConfig.Discriminator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BILINEAR
bilinear scoring function, sigmoid activated to produce probabilities (Velickovic et al., 2018)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
BILINEAR
public static final GraphWiseDgiLayerConfig.Discriminator BILINEAR
bilinear scoring function, sigmoid activated to produce probabilities (Velickovic et al., 2018)
-
-
Method Detail
-
values
public static GraphWiseDgiLayerConfig.Discriminator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GraphWiseDgiLayerConfig.Discriminator c : GraphWiseDgiLayerConfig.Discriminator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GraphWiseDgiLayerConfig.Discriminator valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-