22 #ifndef __LASSO_REGRESSION_MODEL_H__
23 #define __LASSO_REGRESSION_MODEL_H__
25 #include "data_management/data/numeric_table.h"
26 #include "algorithms/linear_model/linear_model_model.h"
37 namespace lasso_regression
56 class DAAL_EXPORT Model :
public linear_model::Model
59 DECLARE_MODEL(Model, linear_model::Model);
61 typedef services::SharedPtr<Model> ModelPtr;
62 typedef services::SharedPtr<const Model> ModelConstPtr;
66 using interface1::Model;
67 using interface1::ModelPtr;
68 using interface1::ModelConstPtr;
80 DAAL_EXPORT services::Status checkModel(
81 lasso_regression::Model* model,
const daal::algorithms::Parameter &par,
size_t nBeta,
size_t nResponses,
int method);
daal
Definition: algorithm_base_common.h:31
daal::algorithms::classifier::prediction::model
Definition: classifier_predict_types.h:66
daal::algorithms::lasso_regression::checkModel
DAAL_EXPORT services::Status checkModel(lasso_regression::Model *model, const daal::algorithms::Parameter &par, size_t nBeta, size_t nResponses, int method)
daal::algorithms::lasso_regression::interface1::Model
Base class for models trained with the lasso regression algorithm
Definition: lasso_regression_model.h:56