Uses of Interface
org.tribuo.math.kernel.Kernel
Packages that use Kernel
Package
Description
Provides a SGD implementation of a Kernel SVM using the Pegasos algorithm.
Provides a 
Kernel interface for Mercer kernels, along with implementations of standard kernels.- 
Uses of Kernel in org.tribuo.classification.sgd.kernelConstructors in org.tribuo.classification.sgd.kernel with parameters of type KernelModifierConstructorDescriptionKernelSVMTrainer(Kernel kernel, double lambda, int epochs, int loggingInterval, long seed) Constructs a trainer for a kernel SVM model.KernelSVMTrainer(Kernel kernel, double lambda, int epochs, long seed) Constructs a trainer for a kernel SVM model.
- 
Uses of Kernel in org.tribuo.math.kernelClasses in org.tribuo.math.kernel that implement KernelModifier and TypeClassDescriptionclassA linear kernel, u.dot(v).classA polynomial kernel, (gamma*u.dot(v) + intercept)^degree.classA Radial Basis Function (RBF) kernel, exp(-gamma*|u-v|^2).classA sigmoid kernel, tanh(gamma*u.dot(v) + intercept).