24 #ifndef __BROWN_BOOST_TRAINING_TYPES_H__
25 #define __BROWN_BOOST_TRAINING_TYPES_H__
27 #include "algorithms/algorithm.h"
28 #include "algorithms/classifier/classifier_training_types.h"
29 #include "algorithms/boosting/brownboost_model.h"
72 class DAAL_EXPORT Result :
public classifier::training::interface1::Result
75 DECLARE_SERIALIZABLE_CAST(Result);
77 DAAL_DEPRECATED_VIRTUAL
virtual ~Result() {}
84 DAAL_DEPRECATED daal::algorithms::brownboost::interface1::ModelPtr
get(classifier::training::ResultId id)
const;
92 template <
typename algorithmFPType>
93 DAAL_EXPORT DAAL_DEPRECATED services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
const int method);
95 DAAL_DEPRECATED services::Status check(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
99 template<
typename Archive,
bool onDeserialize>
100 services::Status serialImpl(Archive *arch)
102 return daal::algorithms::Result::serialImpl<Archive, onDeserialize>(arch);
105 typedef services::SharedPtr<interface1::Result> ResultPtr;
118 class DAAL_EXPORT Result :
public classifier::training::Result
121 DECLARE_SERIALIZABLE_CAST(Result);
130 daal::algorithms::brownboost::ModelPtr
get(classifier::training::ResultId id)
const;
138 template <
typename algorithmFPType>
139 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
const int method);
141 services::Status check(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
145 template<
typename Archive,
bool onDeserialize>
146 services::Status serialImpl(Archive *arch)
148 return daal::algorithms::Result::serialImpl<Archive, onDeserialize>(arch);
151 typedef services::SharedPtr<Result> ResultPtr;
153 using interface2::Result;
154 using interface2::ResultPtr;
161 #endif // __BROWN_BOOST_TRAINING_TYPES_H__
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:198
daal::algorithms::brownboost::training::interface2::Result
Provides methods to access final results obtained with the compute() method of the BrownBoost trainin...
Definition: brownboost_training_types.h:118
daal::algorithms::brownboost::training::defaultDense
Definition: brownboost_training_types.h:59
daal::algorithms::brownboost::training::Method
Method
Definition: brownboost_training_types.h:57
daal::algorithms::classifier::training::ResultId
ResultId
Definition: classifier_training_types.h:82
daal::algorithms::brownboost::training::interface1::Result
Provides methods to access final results obtained with the compute() method.
Definition: brownboost_training_types.h:72