25 #ifndef __LOGITBOOST_PREDICT_TYPES_H__
26 #define __LOGITBOOST_PREDICT_TYPES_H__
28 #include "algorithms/algorithm.h"
29 #include "algorithms/boosting/logitboost_model.h"
30 #include "algorithms/classifier/classifier_predict_types.h"
32 #include "data_management/data/homogen_numeric_table.h"
61 class DAAL_EXPORT Input :
public classifier::prediction::interface1::Input
63 typedef classifier::prediction::interface1::Input super;
66 DAAL_DEPRECATED Input() : classifier::prediction::interface1::Input() {}
67 DAAL_DEPRECATED Input(
const Input& other) : classifier::prediction::interface1::Input(other){}
68 DAAL_DEPRECATED_VIRTUAL
virtual ~Input() {}
78 DAAL_DEPRECATED data_management::NumericTablePtr
get(classifier::prediction::NumericTableInputId id)
const;
85 DAAL_DEPRECATED logitboost::interface1::ModelPtr
get(classifier::prediction::ModelInputId id)
const;
92 DAAL_DEPRECATED
void set(classifier::prediction::NumericTableInputId
id,
const data_management::NumericTablePtr &ptr);
99 DAAL_DEPRECATED
void set(classifier::prediction::ModelInputId
id,
const logitboost::interface1::ModelPtr &ptr);
106 DAAL_DEPRECATED services::Status check(
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
122 class DAAL_EXPORT Input :
public classifier::prediction::Input
124 typedef classifier::prediction::Input super;
127 Input() : classifier::prediction::Input() {}
128 Input(
const Input& other) : classifier::prediction::Input(other){}
139 data_management::NumericTablePtr
get(classifier::prediction::NumericTableInputId id)
const;
146 logitboost::ModelPtr
get(classifier::prediction::ModelInputId id)
const;
153 void set(classifier::prediction::NumericTableInputId
id,
const data_management::NumericTablePtr &ptr);
160 void set(classifier::prediction::ModelInputId
id,
const logitboost::ModelPtr &ptr);
167 services::Status check(
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
172 using interface2::Input;
178 #endif // __LOGITBOOST_PREDICT_TYPES_H__
daal::algorithms::neural_networks::prediction::prediction
Definition: neural_networks_prediction_result.h:55
daal::algorithms::classifier::prediction::interface1::Input
Input objects in the prediction stage of the classification algorithm.
Definition: classifier_predict_types.h:111
daal::algorithms::classifier::prediction::NumericTableInputId
NumericTableInputId
Definition: classifier_predict_types.h:55
daal::algorithms::logitboost::prediction::interface1::Input
Input objects in the prediction stage of the logitboost algorithm.
Definition: logitboost_predict_types.h:61
daal::algorithms::classifier::prediction::ModelInputId
ModelInputId
Definition: classifier_predict_types.h:66
daal::algorithms::logitboost::prediction::interface2::Input
Input objects in the prediction stage of the logitboost algorithm.
Definition: logitboost_predict_types.h:122