See: Description
| Class | Description |
|---|---|
| GaussianProductKernel<T> |
Major kernel computed as a weighted product of minor Gaussian kernels :
K = k_i^{w_i}
Computation of the kernel matrix is done by running a thread on sub matrices. |
| ThreadedProductKernel<T> |
Major kernel computed as a weighted product of minor kernels :
K = k_i^{w_i}
Computation of the kernel matrix is done by running a thread on sub matrices. |
| ThreadedSumKernel<T> |
Major kernel computed as a weighted sum of minor kernels :
K = w_i * k_i
Computation of the kernel matrix is done by running a thread on sub matrices. |
| WeightedProductKernel<T> |
performs a weighted product of several minor kernels, non threaded version.
|
| WeightedSumKernel<T> |
Major kernel computed as a weighted sum of minor kernels :
K = w_i * k_i
Non-threaded version |