public enum LayerType extends Enum<LayerType>
Layer
,
AbstractLayer
Enum Constant and Description |
---|
CONVOLUTIONAL
Performs detection of pixel patterns.
|
FULLY_CONNECTED
Looks for patterns in inputs.
|
INPUT
Accepts external input to the network.
|
MAXPOOLING
Downsizes the input.
|
OUTPUT
Provides final output of the network.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equalsName(String otherName) |
String |
toString() |
static LayerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LayerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayerType INPUT
public static final LayerType CONVOLUTIONAL
public static final LayerType MAXPOOLING
public static final LayerType FULLY_CONNECTED
public static final LayerType OUTPUT
public static LayerType[] values()
for (LayerType c : LayerType.values()) System.out.println(c);
public static LayerType 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 boolean equalsName(String otherName)
Copyright © 2022. All rights reserved.