23 #ifndef __BOOSTING_PREDICT_H__
24 #define __BOOSTING_PREDICT_H__
26 #include "algorithms/classifier/classifier_predict.h"
27 #include "algorithms/boosting/boosting_model.h"
75 class Batch :
public classifier::prediction::Batch
78 typedef classifier::prediction::Batch super;
80 typedef super::InputType InputType;
81 typedef algorithms::boosting::Parameter ParameterType;
82 typedef super::ResultType ResultType;
92 Batch(
const Batch &other) : classifier::prediction::Batch(other) {}
101 services::SharedPtr<Batch> clone()
const
103 return services::SharedPtr<Batch>(cloneImpl());
107 virtual Batch * cloneImpl() const DAAL_C11_OVERRIDE = 0;
111 using interface1::Batch;
117 #endif // __BOOSTING_PREDICT_H__
daal
Definition: algorithm_base_common.h:31
daal::algorithms::boosting::prediction::interface1::Batch::Batch
Batch(const Batch &other)
Definition: boosting_predict.h:92
daal::algorithms::boosting::prediction::interface1::Batch::clone
services::SharedPtr< Batch > clone() const
Definition: boosting_predict.h:101
daal::algorithms::classifier::prediction::prediction
Definition: classifier_predict_types.h:76
daal::algorithms::boosting::prediction::interface1::Batch
Base class for predicting results of boosting classifiers
Definition: boosting_predict.h:75