22 #ifndef __LINREG_QR_MODEL_H__
23 #define __LINREG_QR_MODEL_H__
25 #include "algorithms/linear_regression/linear_regression_model.h"
31 namespace linear_regression
52 class DAAL_EXPORT ModelQR :
public Model
55 DECLARE_MODEL(ModelQR, linear_regression::Model);
57 virtual ~ModelQR() { }
63 virtual data_management::NumericTablePtr getRTable() = 0;
70 virtual data_management::NumericTablePtr getQTYTable() = 0;
72 typedef services::SharedPtr<ModelQR> ModelQRPtr;
73 typedef services::SharedPtr<const ModelQR> ModelQRConstPtr;
76 using interface1::ModelQR;
77 using interface1::ModelQRPtr;
78 using interface1::ModelQRConstPtr;
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