48 #ifndef __DECISION_FOREST_REGRESSION_MODEL_H__
49 #define __DECISION_FOREST_REGRESSION_MODEL_H__
51 #include "data_management/data/numeric_table.h"
52 #include "data_management/data/homogen_numeric_table.h"
53 #include "algorithms/regression/regression_model.h"
54 #include "algorithms/regression/tree_traverse.h"
60 namespace decision_forest
92 class DAAL_EXPORT Model :
public algorithms::regression::Model
95 DECLARE_MODEL(Model, algorithms::regression::Model);
101 virtual size_t numberOfTrees()
const = 0;
108 virtual void traverseDF(
size_t iTree, algorithms::regression::TreeNodeVisitor& visitor)
const = 0;
115 virtual void traverseBF(
size_t iTree, algorithms::regression::TreeNodeVisitor& visitor)
const = 0;
120 typedef services::SharedPtr<Model> ModelPtr;
121 typedef services::SharedPtr<const Model> ModelConstPtr;
125 using interface1::Model;
126 using interface1::ModelPtr;
127 using interface1::ModelConstPtr;
daal
Definition: algorithm_base_common.h:57
daal::algorithms::decision_forest::regression::interface1::Model
Base class for models trained with the decision forest regression algorithm
Definition: decision_forest_regression_model.h:92