Contains classes for the backward stage of the neural network layer.
More...
|
| class | LayerIface |
| | Abstract class which defines interface for the layer. More...
|
| |
| class | LayerIfaceImpl |
| | Implements the abstract interface LayerIface. LayerIfaceImpl is, in turn, the base class for the classes interfacing the layers. More...
|
| |
| class | InputIface |
| | Abstract class that specifies interface of the input objects for the neural network layer algorithm. More...
|
| |
| class | Input |
| | Input parameters for the layer algorithm More...
|
| |
| class | Result |
| | Provides methods to access the result obtained with the compute() method of the layer algorithm. More...
|
| |
Available identifiers of input objects for the layer algorithm
| Enumerator |
|---|
| inputGradient |
Gradient of the preceding layer
|
Available identifiers of input objects for the layer algorithm
| Enumerator |
|---|
| inputFromForward |
Input structure retrieved from the result of the forward layer
|
Available identifiers of results for the layer algorithm
| Enumerator |
|---|
| gradient |
Gradient with respect to the outputs
|
| weightDerivatives |
Gradient with respect to the weight
|
| biasDerivatives |
Gradient with respect to the bias
|
Available identifiers of result objects for the layer algorithm