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