|
2 | 2 | LinearMixingModelKernel(k::Kernel, H::AbstractMatrix) |
3 | 3 | LinearMixingModelKernel(Tk::AbstractVector{<:Kernel},Th::AbstractMatrix) |
4 | 4 |
|
5 | | -Kernel associated with the linear mixing model, taking a vector of `m` kernels and a `m × p` matrix H for a function with `p` outputs. Also accepts a single kernel `k` for use across all `m` basis vectors. |
| 5 | +Kernel associated with the linear mixing model, taking a vector of `Q` kernels and a `Q × m` mixing matrix H for a function with `m` outputs. Also accepts a single kernel `k` for use across all `Q` basis vectors. |
6 | 6 |
|
7 | 7 | # Definition |
8 | 8 |
|
9 | | -For inputs ``x, x'`` and output dimensions ``p_x, p_{x'}'``, the kernel is defined as[^BPTHST] |
| 9 | +For inputs ``x, x'`` and output dimensions ``p, p'``, the kernel is defined as[^BPTHST] |
10 | 10 | ```math |
11 | | -k\big((x, p_x), (x, p_{x'})\big) = H_{:,p_{x}}K(x, x')H_{:,p_{x'}} |
| 11 | +k\big((x, p), (x, p')\big) = H_{:,p}K(x, x')H_{:,p'} |
12 | 12 | ``` |
13 | | -where ``K(x, x') = Diag(k_1(x, x'), ..., k_m(x, x'))`` with zero off-diagonal entries. |
14 | | -``H_{:,p_{x}}`` is the ``p_x``-th column (`p_x`-th output) of ``H \in \mathbb{R}^{m \times p}`` |
15 | | -representing ``m`` basis vectors for the ``p`` dimensional output space of ``f``. |
16 | | -``k_1, \ldots, k_m`` are ``m`` kernels, one for each latent process, ``H`` is a |
17 | | -mixing matrix of ``m`` basis vectors spanning the output space. |
| 13 | +where ``K(x, x') = Diag(k_1(x, x'), ..., k_Q(x, x'))`` with zero off-diagonal entries. |
| 14 | +``H_{:,p}`` is the ``p``-th column (`p`-th output) of ``H \in \mathbb{R}^{Q \times m}`` |
| 15 | +representing ``Q`` basis vectors for the ``m`` dimensional output space of ``f``. |
| 16 | +``k_1, \ldots, k_Q`` are ``Q`` kernels, one for each latent process, ``H`` is a |
| 17 | +mixing matrix of ``Q`` basis vectors spanning the output space. |
18 | 18 |
|
19 | 19 | [^BPTHST]: Wessel P. Bruinsma, Eric Perim, Will Tebbutt, J. Scott Hosking, Arno Solin, Richard E. Turner (2020). [Scalable Exact Inference in Multi-Output Gaussian Processes](https://arxiv.org/pdf/1911.06287.pdf). |
20 | 20 | """ |
|
0 commit comments