ThunderSVM
ThunderSVM: An Open-Source SVM Library on GPUs and CPUs
nusmosolver.h
1 //
2 // Created by jiashuai on 17-10-25.
3 //
4 
5 #ifndef THUNDERSVM_NUSMOSOLVER_H
6 #define THUNDERSVM_NUSMOSOLVER_H
7 
8 #include "csmosolver.h"
9 
13 class NuSMOSolver : public CSMOSolver {
14 public:
15  explicit NuSMOSolver(bool for_svr) : for_svr(for_svr) {};
16 protected:
17  float_type
18  calculate_rho(const SyncArray<float_type> &f_val, const SyncArray<int> &y, SyncArray<float_type> &alpha,
19  float_type Cp,
20  float_type Cn) const override;
21 
22  void smo_kernel(const SyncArray<int> &y, SyncArray<float_type> &f_val, SyncArray<float_type> &alpha,
23  SyncArray<float_type> &alpha_diff,
24  const SyncArray<int> &working_set, float_type Cp, float_type Cn,
25  const SyncArray<float_type> &k_mat_rows,
26  const SyncArray<float_type> &k_mat_diag, int row_len, float_type eps, SyncArray<float_type> &diff,
27  int max_iter) const override;
28 
29  void select_working_set(vector<int> &ws_indicator, const SyncArray<int> &f_idx2sort, const SyncArray<int> &y,
30  const SyncArray<float_type> &alpha, float_type Cp, float_type Cn,
31  SyncArray<int> &working_set) const override;
32 
33  void scale_alpha_rho(SyncArray<float_type> &alpha, float_type &rho, float_type r) const;
34 
35 private:
36  bool for_svr;
37 };
38 
39 #endif //THUNDERSVM_NUSMOSOLVER_H
C-SMO solver for SVC, SVR and OneClassSVC.
Definition: csmosolver.h:14
Nu-SMO solver for NuSVC, NuSVR.
Definition: nusmosolver.h:13