public interface DotProductKernel extends Function
| Modifier and Type | Method and Description |
|---|---|
default double |
apply(double dot)
Computes the kernel function.
|
default double |
f(double dot)
Computes the value of the function at x.
|
double |
k(double dot)
Computes the dot product kernel function.
|
default Matrix |
K(Matrix pdot)
Computes the kernel matrix.
|
double[] |
kg(double dot)
Computes the dot product kernel function and its gradient over hyperparameters..
|
default double f(double dot)
Functiondouble k(double dot)
dot - the dot product.double[] kg(double dot)
dot - The dot product.default double apply(double dot)