2016-03-20 17 views

Antwort

2

Von LibSVM docs:

-s svm_type : set type of SVM (default 0) 
    0 -- C-SVC 
    1 -- nu-SVC 
    2 -- one-class SVM 
    3 -- epsilon-SVR 
    4 -- nu-SVR 
-t kernel_type : set type of kernel function (default 2) 
    0 -- linear: u'*v 
    1 -- polynomial: (gamma*u'*v + coef0)^degree 
    2 -- radial basis function: exp(-gamma*|u-v|^2) 
    3 -- sigmoid: tanh(gamma*u'*v + coef0) 

So -s 0 -t 2 würde bedeuten, Sie versuchen, C-SVC-Klassifikator mit RBF-Kernel zu trainieren.

Verwandte Themen