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