public static enum Layer.Type extends Enum<Layer.Type>
| Enum Constant and Description |
|---|
CONVOLUTIONAL |
CONVOLUTIONAL3D |
FEED_FORWARD |
MULTILAYER |
NORMALIZATION |
RECURRENT |
RECURSIVE |
SUBSAMPLING |
UPSAMPLING |
| Modifier and Type | Method and Description |
|---|---|
static Layer.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Layer.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Layer.Type FEED_FORWARD
public static final Layer.Type RECURRENT
public static final Layer.Type CONVOLUTIONAL
public static final Layer.Type CONVOLUTIONAL3D
public static final Layer.Type SUBSAMPLING
public static final Layer.Type UPSAMPLING
public static final Layer.Type RECURSIVE
public static final Layer.Type MULTILAYER
public static final Layer.Type NORMALIZATION
public static Layer.Type[] values()
for (Layer.Type c : Layer.Type.values()) System.out.println(c);
public static Layer.Type 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 © 2021. All rights reserved.