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

neural_networks_training_types.h
1 /* file: neural_networks_training_types.h */
2 /*******************************************************************************
3 * Copyright 2014-2019 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 neural network algorithm interface.
19 //--
20 */
21 
22 #ifndef __NEURAL_NETWORKS_TRAINING_TYPES_H__
23 #define __NEURAL_NETWORKS_TRAINING_TYPES_H__
24 
25 #include "algorithms/algorithm.h"
26 
27 #include "data_management/data/data_serialize.h"
28 #include "services/daal_defines.h"
29 #include "neural_networks_training_input.h"
30 #include "neural_networks_training_result.h"
31 #include "neural_networks_training_partial_result.h"
32 #include "algorithms/neural_networks/layers/layer.h"
33 
34 namespace daal
35 {
36 namespace algorithms
37 {
41 namespace neural_networks
42 {
52 namespace training
53 {
58 enum Method
59 {
60  defaultDense = 0,
61  feedforwardDense = 0
62 };
63 
64 }
66 }
67 }
68 } // namespace daal
69 #endif
daal::algorithms::neural_networks::training::Method
Method
Computation methods for the neural network model based training.
Definition: neural_networks_training_types.h:58
daal
Definition: algorithm_base_common.h:31
daal_defines.h
daal::algorithms::neural_networks::training::feedforwardDense
Definition: neural_networks_training_types.h:61
daal::algorithms::neural_networks::training::defaultDense
Definition: neural_networks_training_types.h:60

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