49 #ifndef __WEAK_LEARNER_TRAINING_BATCH_H__ 50 #define __WEAK_LEARNER_TRAINING_BATCH_H__ 52 #include "algorithms/classifier/classifier_training_batch.h" 53 #include "algorithms/weak_learner/weak_learner_training_types.h" 59 namespace weak_learner
84 class DAAL_EXPORT Batch :
public classifier::training::Batch
87 typedef classifier::training::Batch super;
89 typedef super::InputType InputType;
90 typedef super::ParameterType ParameterType;
91 typedef algorithms::weak_learner::training::Result ResultType;
101 Batch(
const Batch &other) : classifier::training::Batch(other) {}
109 weak_learner::training::ResultPtr getResult()
111 return services::staticPointerCast<ResultType, classifier::training::Result>(_result);
119 services::SharedPtr<Batch> clone()
const 121 return services::SharedPtr<Batch>(cloneImpl());
125 virtual Batch * cloneImpl()
const DAAL_C11_OVERRIDE = 0;
129 using interface1::Batch;
135 #endif // __WEAK_LEARNER_TRAINING_BATCH_H__ daal::algorithms::weak_learner::training::interface1::Batch
Base class for training the weak learner model in the batch processing mode
Definition: weak_learner_training_batch.h:84
daal
Definition: algorithm_base_common.h:57
daal::algorithms::classifier::interface1::Parameter
Base class for the parameters of the classification algorithm.
Definition: classifier_model.h:81
daal::algorithms::weak_learner::training::interface1::Batch::clone
services::SharedPtr< Batch > clone() const
Definition: weak_learner_training_batch.h:119
daal::algorithms::weak_learner::training::interface1::Batch::Batch
Batch(const Batch &other)
Definition: weak_learner_training_batch.h:101
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::classifier::training::interface1::Batch
Algorithm class for training the classifier model.
Definition: classifier_training_batch.h:82
daal::algorithms::weak_learner::training::interface1::Result
Provides methods to access final results obtained with compute() method of Batch or finalizeCompute()...
Definition: weak_learner_training_types.h:86
daal::algorithms::classifier::training::interface1::Result
Provides methods to access final results obtained with the compute() method in the batch processing m...
Definition: classifier_training_types.h:222