脚本 tools/easy.py 仅使用 rbf 内核。如何更改此脚本以使用其他内核(尤其是线性内核)执行实验?
谢谢
您需要传递您想要svm-train [options] training_set_file [model_file]
的 svm_type 选项。从源代码中的 README 文件中:
options:
-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)
4 -- precomputed kernel (kernel values in training_set_file)
因此线性将是-t 0
自述文件中还列出了其他选项,它们更改了每个内核函数中使用的参数。