25 #ifndef __WEAK_LEARNER_PREDICT_H__
26 #define __WEAK_LEARNER_PREDICT_H__
28 #include "algorithms/classifier/classifier_predict.h"
34 namespace weak_learner
72 class Batch :
public classifier::prediction::interface1::Batch
75 typedef classifier::prediction::interface1::Batch super;
77 typedef super::InputType InputType;
78 typedef super::ParameterType ParameterType;
79 typedef super::ResultType ResultType;
89 Batch(
const Batch &other) : classifier::prediction::interface1::Batch(other) {}
98 services::SharedPtr<Batch> clone()
const
100 return services::SharedPtr<Batch>(cloneImpl());
104 virtual Batch * cloneImpl() const DAAL_C11_OVERRIDE = 0;
108 using interface1::Batch;
114 #endif // __WEAK_LEARNER_PREDICT_H__
daal::algorithms::neural_networks::prediction::prediction
Definition: neural_networks_prediction_result.h:55
daal::algorithms::weak_learner::prediction::interface1::Batch::clone
services::SharedPtr< Batch > clone() const
Definition: weak_learner_predict.h:98
daal::algorithms::classifier::prediction::interface1::Input
Input objects in the prediction stage of the classification algorithm.
Definition: classifier_predict_types.h:111
daal::algorithms::weak_learner::prediction::interface1::Batch::Batch
Batch(const Batch &other)
Definition: weak_learner_predict.h:89
daal::algorithms::weak_learner::prediction::interface1::Batch
Base class for making predictions based on the weak learner model
Definition: weak_learner_predict.h:72
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::interface1::Parameter
Base class for the parameters of the classification algorithm.
Definition: classifier_model.h:69
daal::algorithms::classifier::prediction::interface1::Batch
Base class for making predictions based on the model of the classification algorithms.
Definition: classifier_predict.h:61