public enum LSTMDirectionMode extends Enum<LSTMDirectionMode>
Enum Constant and Description |
---|
BIDIR_CONCAT |
BIDIR_EXTRA_DIM |
BIDIR_SUM |
BWD |
FWD |
Modifier and Type | Method and Description |
---|---|
static LSTMDirectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LSTMDirectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LSTMDirectionMode FWD
public static final LSTMDirectionMode BWD
public static final LSTMDirectionMode BIDIR_SUM
public static final LSTMDirectionMode BIDIR_CONCAT
public static final LSTMDirectionMode BIDIR_EXTRA_DIM
public static LSTMDirectionMode[] values()
for (LSTMDirectionMode c : LSTMDirectionMode.values()) System.out.println(c);
public static LSTMDirectionMode 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 © 2022. All rights reserved.