public enum ActivationFunctionSelector extends Enum<ActivationFunctionSelector>
| Enum Constant and Description |
|---|
ELLIOT |
LINEAR |
LOG |
SIGMOID |
SOFTMAX |
TANH |
| Modifier and Type | Method and Description |
|---|---|
ActivationFunction |
get() |
static ActivationFunctionSelector |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivationFunctionSelector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivationFunctionSelector LINEAR
public static final ActivationFunctionSelector LOG
public static final ActivationFunctionSelector SIGMOID
public static final ActivationFunctionSelector SOFTMAX
public static final ActivationFunctionSelector TANH
public static final ActivationFunctionSelector ELLIOT
public static ActivationFunctionSelector[] values()
for (ActivationFunctionSelector c : ActivationFunctionSelector.values()) System.out.println(c);
public static ActivationFunctionSelector 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 nullpublic ActivationFunction get()
Copyright © 2016. All rights reserved.