weka 中 SVM 的默认设置是什么?

What is the default setting for SVM in weka?

我想知道 weka 库的 SVM 默认设置是什么?。据我所知,Weka 包装了 LIVSVM,LIBSVM 的默认参数是 rbf 内核,这对 weka 是否适用?

是的,默认内核是 RBF,gamma 等于 1/k。请参阅 javadocs here or here.

中的其他默认值

注意:Weka 包含自己的实现 - SMO, but it also provides wrapper for libsvm, and "LibSVM runs faster than SMO" (note that it requires installed libsvm, see docs).