48 #ifndef __LINREG_QR_MODEL_H__
49 #define __LINREG_QR_MODEL_H__
51 #include "algorithms/linear_regression/linear_regression_model.h"
57 namespace linear_regression
78 class DAAL_EXPORT ModelQR :
public Model
81 DECLARE_MODEL(ModelQR, linear_regression::Model);
83 virtual ~ModelQR() { }
89 virtual data_management::NumericTablePtr getRTable() = 0;
96 virtual data_management::NumericTablePtr getQTYTable() = 0;
98 typedef services::SharedPtr<ModelQR> ModelQRPtr;
99 typedef services::SharedPtr<const ModelQR> ModelQRConstPtr;
102 using interface1::ModelQR;
103 using interface1::ModelQRPtr;
104 using interface1::ModelQRConstPtr;
daal
Definition: algorithm_base_common.h:57
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:78
daal::algorithms::linear_regression::interface1::Model
Base class for models trained with the linear regression algorithm
Definition: linear_regression_model.h:99