Contains the various kernel types this library can use.
KernelType
01 Syntax
Microsoft.VisualBasic.MachineLearning.SVM.KernelType
02 Fields
| Name | Overloads | Summary |
|---|---|---|
| LINEAR | 2 | Linear: u'*v |
| POLY | 2 | Polynomial: (gamma*u'*v + coef0)^degree |
| RBF | 2 | Radial basis function: exp(-gamma*|u-v|^2) |
| SIGMOID | 2 | Sigmoid: tanh(gamma*u'*v + coef0) |
| PRECOMPUTED | 2 | Precomputed kernel |
03 Members
LINEAR
Linear: u'*v
POLY
Polynomial: (gammau'v + coef0)^degree
RBF
Radial basis function: exp(-gamma*|u-v|^2)
SIGMOID
Sigmoid: tanh(gammau'v + coef0)
PRECOMPUTED
Precomputed kernel
LINEAR
POLY
RBF
SIGMOID
PRECOMPUTED