कर्नेल एसवीएम के उपयोगी गुण सार्वभौमिक नहीं हैं - वे कर्नेल की पसंद पर निर्भर करते हैं। अंतर्ज्ञान प्राप्त करने के लिए यह सबसे अधिक इस्तेमाल की जाने वाली गुठली में से एक को देखने के लिए सहायक है, गाऊसी कर्नेल। उल्लेखनीय रूप से, यह कर्नेल SVM को k- निकटतम पड़ोसी क्लासिफायर की तरह बहुत कुछ बदल देता है।
यह उत्तर निम्नलिखित की व्याख्या करता है:
- सकारात्मक और नकारात्मक प्रशिक्षण डेटा का सही पृथक्करण हमेशा पर्याप्त छोटे बैंडविड्थ के गॉसियन कर्नेल के साथ संभव है (ओवरफिटिंग की कीमत पर)
- इस पृथक्करण को एक सुविधा स्थान में रैखिक के रूप में कैसे समझा जा सकता है।
- कैसे कर्नेल का उपयोग डेटा स्पेस से फीचर स्पेस में मैपिंग के निर्माण के लिए किया जाता है। Spoiler: सुविधा स्थान कर्नेल पर आधारित एक असामान्य सार आंतरिक उत्पाद के साथ एक बहुत ही गणितीय सार वस्तु है।
1. पूर्ण अलगाव को प्राप्त करना
कर्नेल की स्थानीयता गुणों के कारण गॉसियन कर्नेल के साथ पूर्ण पृथक्करण हमेशा संभव होता है, जो एक मनमाने ढंग से लचीले निर्णय सीमा की ओर ले जाता है। पर्याप्त रूप से छोटे कर्नेल बैंडविड्थ के लिए, निर्णय सीमा आपको इस तरह दिखाई देगी कि जब भी सकारात्मक और नकारात्मक उदाहरणों को अलग करने के लिए आवश्यक हो तो वे बिंदुओं के चारों ओर छोटे घेरे खींच लें:
(क्रेडिट: एंड्रयू एनजी का ऑनलाइन मशीन लर्निंग कोर्स )।
तो, यह गणितीय दृष्टिकोण से क्यों होता है?
मानक सेटअप पर विचार करें: आप एक गाऊसी गिरी है और प्रशिक्षण डेटा ( एक्स ( 1 ) , वाई ( 1 ) ) , ( एक्स ( 2 ) , वाई ( 2 ) ) , ... , ( एक्स ( एन ) ,K(x,z)=exp(−||x−z||2/σ2)(x(1),y(1)),(x(2),y(2)),…,(x(n),y(n)) where the y(i) values are ±1. We want to learn a classifier function
y^(x)=∑iwiy(i)K(x(i),x)
Now how will we ever assign the weights wi? Do we need infinite dimensional spaces and a quadratic programming algorithm? No, because I just want to show that I can separate the points perfectly. So I make σ a billion times smaller than the smallest separation ||x(i)−x(j)|| between any two training examples, and I just set wi=1. This means that all the training points are a billion sigmas apart as far as the kernel is concerned, and each point completely controls the sign of y^ in its neighborhood. Formally, we have
y^(x(k))=∑i=1ny(k)K(x(i),x(k))=y(k)K(x(k),x(k))+∑i≠ky(i)K(x(i),x(k))=y(k)+ϵ
where ϵ is some arbitrarily tiny value. We know ϵ is tiny because x(k) is a billion sigmas away from any other point, so for all i≠k we have
K(x(i),x(k))=exp(−||x(i)−x(k)||2/σ2)≈0.
Since ϵ is so small, y^(x(k)) definitely has the same sign as y(k), and the classifier achieves perfect accuracy on the training data. In practice this would be terribly overfitting but it shows the tremendous flexibility of the Gaussian kernel SVM, and how it can act very similar to a nearest neighbor classifier.
2. Kernel SVM learning as linear separation
The fact that this can be interpreted as "perfect linear separation in an infinite dimensional feature space" comes from the kernel trick, which allows you to interpret the kernel as an abstract inner product some new feature space:
K(x(i),x(j))=⟨Φ(x(i)),Φ(x(j))⟩
where Φ(x) is the mapping from the data space into the feature space. It follows immediately that the y^(x) function as a linear function in the feature space:
y^(x)=∑iwiy(i)⟨Φ(x(i)),Φ(x)⟩=L(Φ(x))
where the linear function L(v) is defined on feature space vectors v as
L(v)=∑iwiy(i)⟨Φ(x(i)),v⟩
This function is linear in v because it's just a linear combination of inner products with fixed vectors. In the feature space, the decision boundary y^(x)=0 is just L(v)=0, the level set of a linear function. This is the very definition of a hyperplane in the feature space.
3. How the kernel is used to construct the feature space
Kernel methods never actually "find" or "compute" the feature space or the mapping Φ explicitly. Kernel learning methods such as SVM do not need them to work; they only need the kernel function K. It is possible to write down a formula for Φ but the feature space it maps to is quite abstract and is only really used for proving theoretical results about SVM. If you're still interested, here's how it works.
Basically we define an abstract vector space V where each vector is a function from X to R. A vector f in V is a function formed from a finite linear combination of kernel slices:
f(x)=∑i=1nαiK(x(i),x)
(Here the
x(i) are just an arbitrary set of points and need not be the same as the training set.) It is convenient to write
f more compactly as
f=∑i=1nαiKx(i)
where
Kx(y)=K(x,y) is a function giving a "slice" of the kernel at
x.
The inner product on the space is not the ordinary dot product, but an abstract inner product based on the kernel:
⟨∑i=1nαiKx(i),∑j=1nβjKx(j)⟩=∑i,jαiβjK(x(i),x(j))
This definition is very deliberate: its construction ensures the identity we need for linear separation, ⟨Φ(x),Φ(y)⟩=K(x,y).
With the feature space defined in this way, Φ is a mapping X→V, taking each point x to the "kernel slice" at that point:
Φ(x)=Kx,whereKx(y)=K(x,y).
You can prove that V is an inner product space when K is a positive definite kernel. See this paper for details.