| Constructor and Description |
|---|
FeedForwardLayer()
Constructs an empty layer.
|
FeedForwardLayer(int width)
Constructs a generic 1D (standard) layer with undefined neuron type.
|
FeedForwardLayer(int width,
int height,
int depth)
Constructs a generic 3D layer with default neuron and link type.
|
FeedForwardLayer(int width,
int height,
int depth,
Neuron neuron,
Link link)
Constructs a forward layer with a given neuron and link type.
|
FeedForwardLayer(int width,
Neuron neuron,
Link link)
Constructs a generic 1D layer with a given neuron type.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Returns the width x height x depth of this layer.
|
addMap, addMap, connect, disconnect, fromXML, getDepth, getHeight, getLevel, getLinkCount, getMapCount, getMaps, getNeuron, getNeurons, getSize, getWidth, removeMap, setIOType, setLevel, toXMLpublic FeedForwardLayer()
public FeedForwardLayer(int width)
width - the widthpublic FeedForwardLayer(int width,
Neuron neuron,
Link link)
width - the widthneuron - the neuron typelink - the link type (if null, default link)public FeedForwardLayer(int width,
int height,
int depth)
width - the widthheight - the heightdepth - the depthpublic FeedForwardLayer(int width,
int height,
int depth,
Neuron neuron,
Link link)
width - the widthheight - the heightdepth - the depthneuron - the neuron typelink - the link type (if null, default link)