Hello, In the SAS documentation on the SVM algorithms there is some missing explanation, Can you please help me to understand all the inputs to these algorithms, specifically:
Hi @mHunfalvay You've not put the T or P as superscript, but I assume you mean the below:
SVMs seek a maximum separating hyperplane between classification groups. Since data is rarely linearly separable, SVMs project data into a higher dimensional space such that it becomes linearly separable. SVMs use a kernel trick to project data into the higher dimensional space without having to exactly calculate the projections.
K is referring to the kernel function
u and v are vectors in the input space.
T refers to the transpose of vector u
This is only relevant to the calculation of the kernel trick, something done by the algorithm as it calculates the inner product of vectors u and v.
The key consideration is the tuning of the hyperparameters which control the fit of the SVM, such as the penalty and tolerance and polynomial degree of the kernel function.
For further information there are references included in the documentation: https://documentation.sas.com/doc/en/pgmsascdc/v_022/casactml/casactml_svm_references.htm?homeOnFail
I hope this helps
Harry
Hi @mHunfalvay You've not put the T or P as superscript, but I assume you mean the below:
SVMs seek a maximum separating hyperplane between classification groups. Since data is rarely linearly separable, SVMs project data into a higher dimensional space such that it becomes linearly separable. SVMs use a kernel trick to project data into the higher dimensional space without having to exactly calculate the projections.
K is referring to the kernel function
u and v are vectors in the input space.
T refers to the transpose of vector u
This is only relevant to the calculation of the kernel trick, something done by the algorithm as it calculates the inner product of vectors u and v.
The key consideration is the tuning of the hyperparameters which control the fit of the SVM, such as the penalty and tolerance and polynomial degree of the kernel function.
For further information there are references included in the documentation: https://documentation.sas.com/doc/en/pgmsascdc/v_022/casactml/casactml_svm_references.htm?homeOnFail
I hope this helps
Harry
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.
Find more tutorials on the SAS Users YouTube channel.