C++ API Reference for Intel® Data Analytics Acceleration Library 2018 Update 3

loss_layer.h
1 /* file: loss_layer.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 loss layer.
19 //--
20 */
21 
22 #ifndef __LOSS_LAYER_H__
23 #define __LOSS_LAYER_H__
24 
25 #include "algorithms/algorithm.h"
26 #include "data_management/data/tensor.h"
27 #include "services/daal_defines.h"
28 #include "algorithms/neural_networks/layers/layer.h"
29 #include "algorithms/neural_networks/layers/loss/loss_layer_forward.h"
30 #include "algorithms/neural_networks/layers/loss/loss_layer_backward.h"
31 
32 namespace daal
33 {
34 namespace algorithms
35 {
36 namespace neural_networks
37 {
38 namespace layers
39 {
49 namespace loss
50 {
51 namespace interface1
52 {
66 class Batch : public LayerIface
67 {
68 public:
70  Batch()
71  {}
72 
73 };
74 } // namespace interface1
75 using interface1::Batch;
76 
77 } // namespace loss
79 } // namespace layers
80 } // namespace neural_networks
81 } // namespace algorithms
82 } // namespace daal
83 #endif
daal::algorithms::neural_networks::layers::loss::interface1::Batch::Batch
Batch()
Definition: loss_layer.h:70
daal
Definition: algorithm_base_common.h:31
daal_defines.h
daal::algorithms::neural_networks::layers::loss::interface1::Batch
Provides methods for the loss layer in the batch processing mode.
Definition: loss_layer.h:66

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