ThunderSVM
ThunderSVM: An Open-Source SVM Library on GPUs and CPUs
nusvc.h
1 //
2 // Created by jiashuai on 17-10-25.
3 //
4 
5 #ifndef THUNDERSVM_NUSVC_H
6 #define THUNDERSVM_NUSVC_H
7 
8 #include "svc.h"
9 
13 class NuSVC : public SVC {
14 protected:
15  void train_binary(const DataSet &dataset, int i, int j, SyncArray<float_type> &alpha, float_type &rho) override;
16 };
17 
18 #endif //THUNDERSVM_NUSVC_H
Dataset reader.
Definition: dataset.h:14
void train_binary(const DataSet &dataset, int i, int j, SyncArray< float_type > &alpha, float_type &rho) override
Definition: nusvc.cpp:7
Nu-Support Vector Machine for classification.
Definition: nusvc.h:13
SyncArray< float_type > rho
the bias term for each binary model
Definition: svmmodel.h:104
Support Vector Machine for classification.
Definition: svc.h:17