C++ API Reference for Intel® Data Analytics Acceleration Library 2019

elu_layer_types.h
1 /* file: elu_layer_types.h */
2 /*******************************************************************************
3 * Copyright 2014-2018 Intel Corporation.
4 *
5 * This software and the related documents are Intel copyrighted materials, and
6 * your use of them is governed by the express license under which they were
7 * provided to you (License). Unless the License provides otherwise, you may not
8 * use, modify, copy, publish, distribute, disclose or transmit this software or
9 * the related documents without Intel's prior written permission.
10 *
11 * This software and the related documents are provided as is, with no express
12 * or implied warranties, other than those that are expressly stated in the
13 * License.
14 *******************************************************************************/
15 
16 /*
17 //++
18 // Implementation of the Exponential Linear Unit (ELU) layer
19 //--
20 */
21 
22 #ifndef __ELU_LAYER_TYPES_H__
23 #define __ELU_LAYER_TYPES_H__
24 
25 #include "algorithms/algorithm.h"
26 #include "data_management/data/tensor.h"
27 #include "data_management/data/homogen_tensor.h"
28 #include "services/daal_defines.h"
29 #include "algorithms/neural_networks/layers/layer_types.h"
30 
31 namespace daal
32 {
33 namespace algorithms
34 {
35 namespace neural_networks
36 {
37 namespace layers
38 {
48 namespace elu
49 {
50 
55 enum Method
56 {
57  defaultDense = 0,
58 };
59 
64 enum LayerDataId
65 {
66  auxData = layers::lastLayerInputLayout + 1,
67  auxIntermediateValue,
68  lastLayerDataId = auxIntermediateValue
69 };
70 
74 namespace interface1
75 {
82 /* [Parameter source code] */
83 struct DAAL_EXPORT Parameter: public layers::Parameter
84 {
88  Parameter(double alpha = 1.0);
89 
90  double alpha;
91 };
92 /* [Parameter source code] */
93 } // namespace interface1
94 using interface1::Parameter;
95 
96 } // namespace elu
98 } // namespace layers
99 } // namespace neural_networks
100 } // namespace algorithm
101 } // namespace daal
102 #endif
daal::algorithms::neural_networks::layers::elu::LayerDataId
LayerDataId
Identifiers of input objects for the backward ELU layer and results for the forward ELU layer...
Definition: elu_layer_types.h:64
daal::algorithms::neural_networks::layers::elu::defaultDense
Definition: elu_layer_types.h:57
daal::algorithms::neural_networks::layers::elu::interface1::Parameter::alpha
double alpha
Definition: elu_layer_types.h:90
daal
Definition: algorithm_base_common.h:31
daal::algorithms::neural_networks::layers::elu::interface1::Parameter
Parameters for the ELU layer.
Definition: elu_layer_types.h:83
daal::algorithms::neural_networks::layers::elu::Method
Method
Definition: elu_layer_types.h:55
daal::algorithms::neural_networks::layers::elu::auxData
Definition: elu_layer_types.h:66
daal_defines.h

For more complete information about compiler optimizations, see our Optimization Notice.