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

weak_learner_model.h
1 /* file: weak_learner_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 weak learner model.
19 //--
20 */
21 
22 #ifndef __WEAK_LEARNER_MODEL_H__
23 #define __WEAK_LEARNER_MODEL_H__
24 
25 #include "algorithms/classifier/classifier_model.h"
26 
27 namespace daal
28 {
29 namespace algorithms
30 {
37 namespace weak_learner
38 {
39 
43 namespace interface1
44 {
51 /* [Parameter source code] */
52 class Parameter : public classifier::Parameter
53 {
54 public:
55  Parameter() {}
56  virtual ~Parameter() {}
57 };
58 /* [Parameter source code] */
59 
64 class Model : public classifier::Model
65 {
66 public:
67  Model() {}
68  virtual ~Model() {}
69 };
70 typedef services::SharedPtr<Model> ModelPtr;
71 } // namespace interface1
72 using interface1::Parameter;
73 using interface1::Model;
74 using interface1::ModelPtr;
75 
76 } // namespace daal::algorithms::weak_learner
78 }
79 } // namespace daal
80 #endif // __WEAK_LEARNER_MODEL_H__
daal
Definition: algorithm_base_common.h:31
daal::algorithms::weak_learner::interface1::Model
Base class for the weak learner model
Definition: weak_learner_model.h:64
daal::algorithms::weak_learner::interface1::Parameter
Base class for the input objects of the weak learner training and prediction algorithm ...
Definition: weak_learner_model.h:52

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