public static enum RBM.HiddenUnit extends Enum<RBM.HiddenUnit>
| Enum Constant and Description |
|---|
BINARY |
GAUSSIAN |
IDENTITY |
RECTIFIED |
SOFTMAX |
| Modifier and Type | Method and Description |
|---|---|
static RBM.HiddenUnit |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All Rights Reserved.