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

neural_networks_prediction_types.h
1 /* file: neural_networks_prediction_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 neural network algorithm interface.
19 //--
20 */
21 
22 #ifndef __NEURAL_NETWORKS_PREDICTION_TYPES_H__
23 #define __NEURAL_NETWORKS_PREDICTION_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 "algorithms/neural_networks/layers/layer_forward.h"
30 #include "algorithms/neural_networks/neural_networks_prediction_input.h"
31 #include "algorithms/neural_networks/neural_networks_prediction_result.h"
32 
33 namespace daal
34 {
35 namespace algorithms
36 {
46 namespace neural_networks
47 {
51 namespace prediction
52 {
57 enum Method
58 {
59  defaultDense = 0,
60  feedforwardDense = 0
61 };
62 
63 }
64 }
66 }
67 } // namespace daal
68 
69 #endif
daal::algorithms::neural_networks::prediction::feedforwardDense
Definition: neural_networks_prediction_types.h:60
daal
Definition: algorithm_base_common.h:31
daal::algorithms::neural_networks::prediction::Method
Method
Computation methods for the neural network model based prediction.
Definition: neural_networks_prediction_types.h:57
daal_defines.h
daal::algorithms::neural_networks::prediction::defaultDense
Definition: neural_networks_prediction_types.h:59
daal::algorithms::classifier::prediction::prediction
Definition: classifier_predict_types.h:76

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