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.kernel
Constructors 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.kernel
Classes 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).Methods in org.tribuo.math.kernel that return KernelModifier and TypeMethodDescriptionstatic KernelKernel.deserialize(org.tribuo.math.protos.KernelProto proto) Deserializes the kernel from the supplied protobuf.