Enum KernelType
- Namespace
- AiDotNet.Preprocessing.DimensionalityReduction
- Assembly
- AiDotNet.dll
Specifies the kernel type for Kernel PCA.
public enum KernelType
Fields
Linear = 0Linear kernel: K(x, y) = x · y
Polynomial = 2Polynomial kernel: K(x, y) = (γ(x · y) + c₀)^d
RBF = 1Radial Basis Function (Gaussian): K(x, y) = exp(-γ||x-y||²)
Sigmoid = 3Sigmoid (hyperbolic tangent): K(x, y) = tanh(γ(x · y) + c₀)