48 #ifndef __LINEAR_REGRESSION_MODEL_H__ 49 #define __LINEAR_REGRESSION_MODEL_H__ 51 #include "data_management/data/numeric_table.h" 52 #include "algorithms/linear_model/linear_model_model.h" 63 namespace linear_regression
82 struct Parameter :
public linear_model::Parameter
99 class DAAL_EXPORT Model :
public linear_model::Model
102 DAAL_CAST_OPERATOR(Model)
104 typedef services::SharedPtr<Model> ModelPtr;
105 typedef services::SharedPtr<const Model> ModelConstPtr;
108 using interface1::Parameter;
109 using interface1::Model;
110 using interface1::ModelPtr;
111 using interface1::ModelConstPtr;
123 DAAL_EXPORT services::Status checkModel(
124 linear_regression::Model *model,
const daal::algorithms::Parameter &par,
size_t nBeta,
size_t nResponses,
int method);
daal::services::interface1::Status
Class that holds the results of API calls. In case of API routine failure it contains the list of err...
Definition: error_handling.h:491
daal
Definition: algorithm_base_common.h:57
daal::algorithms::linear_model::interface1::Parameter
Parameters for the regression algorithm.
Definition: linear_model_model.h:85
daal::algorithms::interface1::Parameter
Base class to represent computation parameters. Algorithm-specific parameters are represented as deri...
Definition: algorithm_types.h:86
daal::services::interface1::SharedPtr
Shared pointer that retains shared ownership of an object through a pointer. Several SharedPtr object...
Definition: daal_shared_ptr.h:187
daal::algorithms::linear_model::interface1::Model
Base class for models trained with the regression algorithm
Definition: linear_model_model.h:101
daal::algorithms::linear_regression::training::model
Definition: linear_regression_training_types.h:125
daal::algorithms::linear_regression::checkModel
DAAL_EXPORT services::Status checkModel(linear_regression::Model *model, const daal::algorithms::Parameter &par, size_t nBeta, size_t nResponses, int method)
daal::algorithms::linear_regression::interface1::Parameter
Parameters for the linear regression algorithm.
Definition: linear_regression_model.h:82
daal::algorithms::linear_regression::interface1::Model
Base class for models trained with the linear regression algorithm
Definition: linear_regression_model.h:99