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

decision_tree_model.h
1 /* file: decision_tree_model.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 the class defining the Decision tree
19 //--
20 */
21 
22 #ifndef __DECISION_TREE_MODEL_H__
23 #define __DECISION_TREE_MODEL_H__
24 
25 namespace daal
26 {
27 namespace algorithms
28 {
29 
40 namespace decision_tree
41 {
42 
47 enum Pruning
48 {
49  none = 0,
50  reducedErrorPruning = 1
51 };
52 
53 } // namespace decision_tree
54 
56 } // namespace algorithms
57 } // namespace daal
58 
59 #endif
daal::algorithms::decision_tree::none
Definition: decision_tree_model.h:49
daal
Definition: algorithm_base_common.h:31
daal::algorithms::decision_tree::reducedErrorPruning
Definition: decision_tree_model.h:50
daal::algorithms::decision_tree::Pruning
Pruning
Pruning method for Decision tree algorithm.
Definition: decision_tree_model.h:47

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