Overview
Hyper Parameters
Kernel Function
- Linear
- Polynomial
- RBF
- : The gamma parameter defines the influence of each training example on the decision boundary. A higher gamma value gives more weight to the closer points, while a lower value allows points further away to have a significant impact. Higher values of gamma can lead to overfitting, especially in datasets with noise.
C Parameter
The C parameter, also known as the regularization parameter, controls the trade-off between maximizing the margin and minimizing the classification error. A smaller C value allows for a larger margin but may lead to misclassification of some training examples, while a larger C value focuses on classifying all training examples correctly but might result in a narrower margin
Training Method
- One-vs-All
- One-vs-One
Detail
Score Function
- is corresponding support vector weight
- is corresponding support vector tags
- is kernel function about input sample and support vector
- is bias
Decision Function
We determine the sample’s category by checking its decision function’s sign.
Reference
- “华为开发者论坛.” Huawei, https://developer.huawei.com/consumer/cn/forum/topic/41598169. Accessed 4 Sept. 2023.
- Multi-class Classification — One-vs-All & One-vs-One
- Saini, Anshul. “Guide on Support Vector Machine (SVM) Algorithm.” Analytics Vidhya, 12 Oct. 2021, https://www.analyticsvidhya.com/blog/2021/10/support-vector-machinessvm-a-complete-guide-for-beginners/.