public interface Layer
NeuralNetwork
.
Neural network typically consists of a sequence of layers.
Layer performs mathematical operations on it's inputs, and provides output to yhe next layer as an input.AbstractLayer
,
LayerType
,
deepnetts.net.layers
Modifier and Type | Method and Description |
---|---|
void |
backward()
Performs weight parameters adjustment in backward pass during training of a neural network.
|
void |
forward()
Performs layer calculation in forward pass of a neural network.
|
Tensor |
getDeltas()
Returns layer deltas/errors (as a tensor).
|
Tensor |
getOutputs()
Returns layer outputs (as a tensor).
|
void forward()
void backward()
Tensor getOutputs()
Tensor getDeltas()
Copyright © 2022. All rights reserved.