49 #ifndef __BOOSTING_PREDICT_H__ 50 #define __BOOSTING_PREDICT_H__ 52 #include "algorithms/classifier/classifier_predict.h" 53 #include "algorithms/boosting/boosting_model.h" 101 class Batch :
public classifier::prediction::Batch
104 typedef classifier::prediction::Batch super;
106 typedef super::InputType InputType;
107 typedef algorithms::boosting::Parameter ParameterType;
108 typedef super::ResultType ResultType;
118 Batch(
const Batch &other) : classifier::prediction::Batch(other) {}
127 services::SharedPtr<Batch> clone()
const 129 return services::SharedPtr<Batch>(cloneImpl());
133 virtual Batch * cloneImpl()
const DAAL_C11_OVERRIDE = 0;
137 using interface1::Batch;
143 #endif // __BOOSTING_PREDICT_H__ daal::algorithms::classifier::prediction::interface1::Result
Provides methods to access prediction results obtained with the compute() method of the classifier pr...
Definition: classifier_predict_types.h:190
daal
Definition: algorithm_base_common.h:57
daal::algorithms::neural_networks::prediction::prediction
Definition: neural_networks_prediction_result.h:79
daal::algorithms::boosting::prediction::interface1::Batch::Batch
Batch(const Batch &other)
Definition: boosting_predict.h:118
daal::algorithms::classifier::prediction::interface1::Batch
Base class for making predictions based on the model of the classification algorithms.
Definition: classifier_predict.h:85
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::boosting::prediction::interface1::Batch::clone
services::SharedPtr< Batch > clone() const
Definition: boosting_predict.h:127
daal::algorithms::boosting::interface1::Parameter
Base class for parameters of the boosting algorithm
Definition: boosting_model.h:84
daal::algorithms::boosting::prediction::interface1::Batch
Base class for predicting results of boosting classifiers
Definition: boosting_predict.h:101