24 #ifndef __POOLING1D_LAYER_FORWARD_TYPES_H__
25 #define __POOLING1D_LAYER_FORWARD_TYPES_H__
27 #include "algorithms/algorithm.h"
28 #include "data_management/data/tensor.h"
29 #include "data_management/data/homogen_tensor.h"
30 #include "data_management/data/homogen_numeric_table.h"
31 #include "services/daal_defines.h"
32 #include "algorithms/neural_networks/layers/layer_forward_types.h"
33 #include "algorithms/neural_networks/layers/pooling1d/pooling1d_layer_types.h"
39 namespace neural_networks
66 class DAAL_EXPORT Input :
public layers::forward::Input
69 typedef layers::forward::Input super;
80 Input(
const Input& other);
92 DAAL_DEPRECATED_VIRTUAL
virtual const services::Collection<size_t> getWeightsSizes(
const layers::Parameter *parameter)
const DAAL_C11_OVERRIDE;
99 DAAL_DEPRECATED_VIRTUAL
virtual const services::Collection<size_t> getBiasesSizes(
const layers::Parameter *parameter)
const DAAL_C11_OVERRIDE;
109 DAAL_DEPRECATED services::Status check(
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
119 class DAAL_EXPORT Result :
public layers::forward::Result
126 DAAL_DEPRECATED Result();
137 DAAL_DEPRECATED_VIRTUAL
virtual const services::Collection<size_t> getValueSize(
const services::Collection<size_t> &inputSize,
138 const daal::algorithms::Parameter *par,
const int method)
const DAAL_C11_OVERRIDE;
149 template <
typename algorithmFPType>
150 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
const int method);
161 services::Status check(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
167 DAAL_DEPRECATED
size_t computeValueDimension(
size_t dataDim,
size_t kernelSize,
size_t padding,
size_t stride)
const;
172 DAAL_DEPRECATED
void computeValueDimensions(services::Collection<size_t> &dims,
const Parameter *param)
const;
177 DAAL_DEPRECATED data_management::NumericTablePtr createAuxInputDimensions(
const services::Collection<size_t> &dataDims)
const;
181 using interface1::Input;
182 using interface1::Result;
daal::algorithms::neural_networks::layers::pooling1d::forward::interface1::Result
Provides methods to access the result obtained with the compute() method of the forward 1D pooling la...
Definition: pooling1d_layer_forward_types.h:119
daal::algorithms::neural_networks::layers::pooling1d::forward::interface1::Input
Input objects for the forward 1D pooling layer
Definition: pooling1d_layer_forward_types.h:66