我在理解非线性 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?