48 #ifndef __LOSS_LAYER_BACKWARD_H__ 49 #define __LOSS_LAYER_BACKWARD_H__ 51 #include "algorithms/algorithm.h" 52 #include "data_management/data/tensor.h" 53 #include "services/daal_defines.h" 54 #include "algorithms/neural_networks/layers/layer.h" 55 #include "algorithms/neural_networks/layers/loss/loss_layer_backward_types.h" 61 namespace neural_networks
92 class Batch :
public layers::backward::LayerIfaceImpl
95 typedef algorithms::neural_networks::layers::loss::backward::Input InputType;
96 typedef algorithms::neural_networks::layers::loss::backward::Result ResultType;
110 Batch(
const Batch &other)
121 services::SharedPtr<Batch > clone()
const 123 return services::SharedPtr<Batch >(cloneImpl());
127 virtual Batch *cloneImpl()
const DAAL_C11_OVERRIDE = 0;
134 using interface1::Batch;
daal::algorithms::neural_networks::layers::backward::interface1::LayerIfaceImpl
Implements the abstract interface LayerIface. LayerIfaceImpl is, in turn, the base class for the clas...
Definition: layer_backward.h:153
daal
Definition: algorithm_base_common.h:57
daal::algorithms::neural_networks::layers::loss::backward::interface1::Batch
Provides methods for the backward loss layer in the batch processing mode.
Definition: loss_layer_backward.h:92
daal::algorithms::neural_networks::layers::loss::backward::interface1::Result
Provides methods to access the result obtained with the compute() method of the backward loss layer...
Definition: loss_layer_backward_types.h:124
daal::algorithms::neural_networks::layers::loss::backward::interface1::Batch::clone
services::SharedPtr< Batch > clone() const
Definition: loss_layer_backward.h:121
daal::algorithms::neural_networks::layers::loss::backward::interface1::Batch::Batch
Batch()
Definition: loss_layer_backward.h:99
daal::services::interface1::SharedPtr
Shared pointer that retains shared ownership of an object through a pointer. Several SharedPtr object...
Definition: daal_shared_ptr.h:187
daal::algorithms::neural_networks::layers::backward::interface1::Result
Provides methods to access the result obtained with the compute() method of the layer algorithm...
Definition: layer_backward_types.h:224
daal::algorithms::neural_networks::layers::loss::backward::interface1::Batch::Batch
Batch(const Batch &other)
Definition: loss_layer_backward.h:110