10 #include <cublas_v2.h>
15 template <
typename math_t>
40 template <
typename math_t>
41 int svrFit(
const raft::handle_t& handle,
49 const math_t* sample_weight =
nullptr);
73 template <
typename math_t>
85 const math_t* sample_weight =
nullptr);
int svrFit(const raft::handle_t &handle, math_t *X, int n_rows, int n_cols, math_t *y, const SvmParameter ¶m, ML::matrix::KernelParams &kernel_params, SvmModel< math_t > &model, const math_t *sample_weight=nullptr)
Fit a support vector regressor to the training data.
int svrFitSparse(const raft::handle_t &handle, int *indptr, int *indices, math_t *data, int n_rows, int n_cols, int nnz, math_t *y, const SvmParameter ¶m, ML::matrix::KernelParams &kernel_params, SvmModel< math_t > &model, const math_t *sample_weight=nullptr)
Fit a support vector regressor to the training data.
Definition: dbscan.hpp:18
Definition: svm_model.h:24
Definition: svm_parameter.h:27
Definition: kernel_params.hpp:18