24 #ifndef __LOGISTIC_LAYER_H__
25 #define __LOGISTIC_LAYER_H__
27 #include "algorithms/algorithm.h"
28 #include "data_management/data/tensor.h"
29 #include "services/daal_defines.h"
30 #include "algorithms/neural_networks/layers/layer.h"
31 #include "algorithms/neural_networks/layers/logistic/logistic_layer_types.h"
32 #include "algorithms/neural_networks/layers/logistic/logistic_layer_forward.h"
33 #include "algorithms/neural_networks/layers/logistic/logistic_layer_backward.h"
39 namespace neural_networks
72 template<
typename algorithmFPType = DAAL_ALGORITHM_FP_TYPE, Method method = defaultDense>
73 class Batch :
public LayerIface
81 DAAL_DEPRECATED Batch()
83 forward::Batch<algorithmFPType, method> *forwardLayerObject =
new forward::Batch<algorithmFPType, method>(parameter);
84 backward::Batch<algorithmFPType, method> *backwardLayerObject =
new backward::Batch<algorithmFPType, method>(parameter);
86 LayerIface::forwardLayer = services::SharedPtr<forward::Batch<algorithmFPType, method> >(forwardLayerObject);
87 LayerIface::backwardLayer = services::SharedPtr<backward::Batch<algorithmFPType, method> >(backwardLayerObject);
92 using interface1::Batch;
daal::algorithms::neural_networks::layers::logistic::interface1::Batch::parameter
Parameter parameter
Definition: logistic_layer.h:76
daal::algorithms::neural_networks::layers::logistic::interface1::Batch::Batch
DAAL_DEPRECATED Batch()
Default constructor.
Definition: logistic_layer.h:81
daal::algorithms::neural_networks::layers::logistic::interface1::Batch
Provides methods for the logistic layer in the batch processing mode.
Definition: logistic_layer.h:73
daal::algorithms::neural_networks::layers::logistic::interface1::Parameter
Parameters for the logistic layer.
Definition: logistic_layer_types.h:85