5 #ifndef THUNDERSVM_SVMPARAM_H 6 #define THUNDERSVM_SVMPARAM_H 8 #include "thundersvm.h" 28 C_SVC, NU_SVC, ONE_CLASS, EPSILON_SVR, NU_SVR
32 LINEAR, POLY, RBF, SIGMOID
59 static const char *kernel_type_name[6];
60 static const char *svm_type_name[6];
62 #endif //THUNDERSVM_SVMPARAM_H int nr_weight
for SVC
Definition: svmparam.h:52
int probability
do probability estimates
Definition: svmparam.h:58
int degree
degree for polynomial kernel
Definition: svmparam.h:48
KERNEL_TYPE
kernel function type
Definition: svmparam.h:31
float_type epsilon
stopping criteria
Definition: svmparam.h:46
float_type * weight
for SVC
Definition: svmparam.h:56
float_type gamma
for RBF kernel
Definition: svmparam.h:40
float_type p
for regression
Definition: svmparam.h:42
float_type C
regularization parameter
Definition: svmparam.h:38
float_type coef0
for polynomial/sigmoid kernel
Definition: svmparam.h:50
int * weight_label
for SVC
Definition: svmparam.h:54
params for ThunderSVM
Definition: svmparam.h:13
float_type nu
for -SVM
Definition: svmparam.h:44
SVM_TYPE
SVM type.
Definition: svmparam.h:27