24 #ifndef __SVM_TRAIN_TYPES_H__
25 #define __SVM_TRAIN_TYPES_H__
27 #include "algorithms/algorithm.h"
28 #include "algorithms/kernel_function/kernel_function.h"
29 #include "algorithms/svm/svm_model.h"
30 #include "algorithms/classifier/classifier_training_types.h"
69 class DAAL_EXPORT Result :
public classifier::training::Result
72 DECLARE_SERIALIZABLE_CAST(Result);
82 daal::algorithms::svm::ModelPtr
get(classifier::training::ResultId id)
const;
92 template <
typename algorithmFPType>
93 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
const int method);
95 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<Result> ResultPtr;
108 using interface1::Result;
109 using interface1::ResultPtr;
daal::algorithms::svm::training::interface1::Result
Provides methods to access final results obtained with the compute() method of the SVM training algor...
Definition: svm_train_types.h:69
daal::algorithms::svm::training::defaultDense
Definition: svm_train_types.h:56
daal::algorithms::svm::training::Method
Method
Definition: svm_train_types.h:53
daal::algorithms::svm::training::boser
Definition: svm_train_types.h:55
daal::algorithms::classifier::training::ResultId
ResultId
Definition: classifier_training_types.h:82