KernelType {Microsoft.VisualBasic.MachineLearning.SVM} | .NET clr documentation |
Contains the various kernel types this library can use.
# namespace Microsoft.VisualBasic.MachineLearning.SVM
export class KernelType extends Enum {
# Linear: u'*v
LINEAR: KernelType = 0;
# Polynomial: (gammau'v + coef0)^degree
POLY: KernelType = 1;
# Radial basis function: exp(-gamma*|u-v|^2)
RBF: KernelType = 2;
# Sigmoid: tanh(gammau'v + coef0)
SIGMOID: KernelType = 3;
# Precomputed kernel
PRECOMPUTED: KernelType = 4;
}
LINEAR
: KernelTypePOLY
: KernelTypeRBF
: KernelTypeSIGMOID
: KernelTypePRECOMPUTED
: KernelType