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