Uses of Package
org.tribuo.math.kernel
Packages that use org.tribuo.math.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.-
Classes in org.tribuo.math.kernel used by org.tribuo.classification.sgd.kernel
-
Classes in org.tribuo.math.kernel used by org.tribuo.math.kernelClassDescriptionAn interface for a Mercer kernel function.A linear kernel, u.dot(v).A polynomial kernel, (gamma*u.dot(v) + intercept)^degree.A Radial Basis Function (RBF) kernel, exp(-gamma*|u-v|^2).A sigmoid kernel, tanh(gamma*u.dot(v) + intercept).