ThunderSVM
ThunderSVM: An Open-Source SVM Library on GPUs and CPUs
csmosolver.h
1 //
2 // Created by jiashuai on 17-10-25.
3 //
4 
5 #ifndef THUNDERSVM_CSMOSOLVER_H
6 #define THUNDERSVM_CSMOSOLVER_H
7 
8 #include <thundersvm/thundersvm.h>
9 #include <thundersvm/kernelmatrix.h>
10 
14 class CSMOSolver {
15 public:
16  void solve(const KernelMatrix &k_mat, const SyncArray<int> &y, SyncArray<float_type> &alpha, float_type &rho,
17  SyncArray<float_type> &f_val, float_type eps, float_type Cp, float_type Cn, int ws_size) const;
18 
19 protected:
20  void init_f(const SyncArray<float_type> &alpha, const SyncArray<int> &y, const KernelMatrix &k_mat,
21  SyncArray<float_type> &f_val) const;
22 
23  virtual void
24  select_working_set(vector<int> &ws_indicator, const SyncArray<int> &f_idx2sort, const SyncArray<int> &y,
25  const SyncArray<float_type> &alpha, float_type Cp, float_type Cn,
26  SyncArray<int> &working_set) const;
27 
28  virtual float_type
29  calculate_rho(const SyncArray<float_type> &f_val, const SyncArray<int> &y, SyncArray<float_type> &alpha,
30  float_type Cp,
31  float_type Cn) const;
32 
33  virtual void
34  smo_kernel(const SyncArray<int> &y, SyncArray<float_type> &f_val, SyncArray<float_type> &alpha,
35  SyncArray<float_type> &alpha_diff,
36  const SyncArray<int> &working_set, float_type Cp, float_type Cn, const SyncArray<float_type> &k_mat_rows,
37  const SyncArray<float_type> &k_mat_diag, int row_len, float_type eps, SyncArray<float_type> &diff,
38  int max_iter) const;
39 };
40 
41 #endif //THUNDERSVM_CSMOSOLVER_H
The management class of kernel values.
Definition: kernelmatrix.h:16
C-SMO solver for SVC, SVR and OneClassSVC.
Definition: csmosolver.h:14