【发布时间】:2012-10-12 09:52:23
【问题描述】:
我在理解非线性 SVM 的内核方面存在一些问题。 首先我对非线性 SVM 的理解是:使用内核将输入转换到一个非常高维的空间,其中转换后的输入可以被一个线性超平面分开。
内核例如:RBF:
K(x_i, x_j) = exp(-||x_i - x_j||^2/(2*sigma^2));
其中 x_i 和 x_j 是两个输入。在这里,我们需要更改 sigma 以适应我们的问题。
(1) Say if my input dimension is d, what will be the dimension of the
transformed space?
(2) If the transformed space has a dimension of more than 10000 is it
effective to use a linear SVM there to separate the inputs?
【问题讨论】:
标签: machine-learning computer-vision svm libsvm pattern-recognition