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

linear_regression_qr_model.h
1 /* file: linear_regression_qr_model.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 // Declaration of the linear regression model class for the QR decomposition-based method
19 //--
20 */
21 
22 #ifndef __LINREG_QR_MODEL_H__
23 #define __LINREG_QR_MODEL_H__
24 
25 #include "algorithms/linear_regression/linear_regression_model.h"
26 
27 namespace daal
28 {
29 namespace algorithms
30 {
31 namespace linear_regression
32 {
33 
34 namespace interface1
35 {
52 class DAAL_EXPORT ModelQR : public Model
53 {
54 public:
55  DECLARE_MODEL(ModelQR, linear_regression::Model);
56 
57  virtual ~ModelQR() { }
58 
63  virtual data_management::NumericTablePtr getRTable() = 0;
64 
70  virtual data_management::NumericTablePtr getQTYTable() = 0;
71 };
72 typedef services::SharedPtr<ModelQR> ModelQRPtr;
73 typedef services::SharedPtr<const ModelQR> ModelQRConstPtr;
75 } // namespace interface1
76 using interface1::ModelQR;
77 using interface1::ModelQRPtr;
78 using interface1::ModelQRConstPtr;
79 
80 }
81 }
82 } // namespace daal
83 #endif
daal
Definition: algorithm_base_common.h:31
daal::algorithms::linear_regression::interface1::ModelQR
Model trained with the linear regression algorithm using the QR decomposition-based method ...
Definition: linear_regression_qr_model.h:52
daal::algorithms::linear_regression::interface1::Model
Base class for models trained with the linear regression algorithm
Definition: linear_regression_model.h:73

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