25 #ifndef __BOOSTING_PREDICT_H__
26 #define __BOOSTING_PREDICT_H__
28 #include "algorithms/classifier/classifier_predict.h"
29 #include "algorithms/boosting/boosting_model.h"
77 class Batch :
public classifier::prediction::interface1::Batch
80 typedef classifier::prediction::interface1::Batch super;
82 typedef super::InputType InputType;
83 typedef algorithms::boosting::Parameter ParameterType;
84 typedef super::ResultType ResultType;
94 Batch(
const Batch &other) : classifier::prediction::interface1::Batch(other) {}
103 services::SharedPtr<Batch> clone()
const
105 return services::SharedPtr<Batch>(cloneImpl());
109 virtual Batch * cloneImpl() const DAAL_C11_OVERRIDE = 0;
113 using interface1::Batch;
119 #endif // __BOOSTING_PREDICT_H__
daal::algorithms::boosting::prediction::interface1::Batch::Batch
Batch(const Batch &other)
Definition: boosting_predict.h:94
daal::algorithms::neural_networks::prediction::prediction
Definition: neural_networks_prediction_result.h:55
daal::algorithms::boosting::prediction::interface1::Batch::clone
services::SharedPtr< Batch > clone() const
Definition: boosting_predict.h:103
daal::algorithms::classifier::prediction::interface1::Input
Input objects in the prediction stage of the classification algorithm.
Definition: classifier_predict_types.h:111
daal::algorithms::boosting::prediction::interface1::Batch
Base class for predicting results of boosting classifiers
Definition: boosting_predict.h:77
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:168
daal::algorithms::classifier::prediction::interface1::Batch
Base class for making predictions based on the model of the classification algorithms.
Definition: classifier_predict.h:61