22 #ifndef __LOSS_LAYER_FORWARD_H__
23 #define __LOSS_LAYER_FORWARD_H__
25 #include "algorithms/algorithm.h"
26 #include "services/daal_defines.h"
27 #include "algorithms/neural_networks/layers/layer.h"
28 #include "algorithms/neural_networks/layers/loss/loss_layer_forward_types.h"
34 namespace neural_networks
65 class Batch :
public layers::forward::LayerIfaceImpl
68 typedef layers::forward::LayerIfaceImpl super;
70 typedef algorithms::neural_networks::layers::loss::forward::Input InputType;
71 typedef algorithms::neural_networks::layers::loss::forward::Result ResultType;
85 Batch(
const Batch &other)
96 services::SharedPtr<Batch > clone()
const
98 return services::SharedPtr<Batch >(cloneImpl());
102 virtual Batch *cloneImpl() const DAAL_C11_OVERRIDE = 0;
109 using interface1::Batch;
daal::algorithms::neural_networks::layers::loss::forward::interface1::Batch::Batch
Batch()
Definition: loss_layer_forward.h:74
daal
Definition: algorithm_base_common.h:31
daal::algorithms::neural_networks::layers::loss::forward::interface1::Batch::clone
services::SharedPtr< Batch > clone() const
Definition: loss_layer_forward.h:96
daal::algorithms::neural_networks::layers::loss::forward::interface1::Batch::Batch
Batch(const Batch &other)
Definition: loss_layer_forward.h:85
daal::algorithms::neural_networks::layers::loss::forward::interface1::Batch
Provides methods for the forward loss layer in the batch processing mode.
Definition: loss_layer_forward.h:65