Source code for gpjax.gps

# Copyright 2022 The GPJax Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================

from abc import abstractmethod
from typing import Literal

import beartype.typing as tp
import equinox as eqx
import jax.numpy as jnp
import jax.random as jr
import jax.scipy as jsp
from jaxtyping import (
    Float,
    Num,
)
import lineax as lx
from paramax import AbstractUnwrappable

from gpjax.dataset import Dataset
from gpjax.distributions import GaussianDistribution
from gpjax.kernels import RFF
from gpjax.kernels.base import AbstractKernel
from gpjax.likelihoods import (
    AbstractHeteroscedasticLikelihood,
    AbstractLikelihood,
    Gaussian,
    HeteroscedasticGaussian,
    NonGaussian,
)
from gpjax.linalg.utils import add_jitter
from gpjax.mean_functions import AbstractMeanFunction
from gpjax.parameters import (
    Real,
    _val,
)
from gpjax.summary import _SummaryMixin
from gpjax.typing import (
    Array,
    FunctionalSample,
    KeyArray,
)

K = tp.TypeVar("K", bound=AbstractKernel)
M = tp.TypeVar("M", bound=AbstractMeanFunction)
L = tp.TypeVar("L", bound=AbstractLikelihood)
NGL = tp.TypeVar("NGL", bound=NonGaussian)
GL = tp.TypeVar("GL", bound=Gaussian)
HL = tp.TypeVar("HL", bound=AbstractHeteroscedasticLikelihood)


[docs] class AbstractPrior(_SummaryMixin, eqx.Module, tp.Generic[M, K]): r"""Abstract Gaussian process prior.""" kernel: K mean_function: M jitter: float = eqx.field(static=True, default=1e-6) def __init__( self, kernel: K, mean_function: M, jitter: float = 1e-6, ): r"""Construct a Gaussian process prior. Args: kernel: kernel object inheriting from AbstractKernel. mean_function: mean function object inheriting from AbstractMeanFunction. """ self.kernel = kernel self.mean_function = mean_function self.jitter = jitter def __call__( self, test_inputs: Num[Array, "N D"], *, return_covariance_type: Literal["dense", "diagonal"] = "dense", ) -> GaussianDistribution: r"""Evaluate the Gaussian process at the given points. The output of this function is a ``GaussianDistribution`` from which the latent function's mean and covariance can be evaluated and the distribution can be sampled. Under the hood, ``__call__`` invokes the ``predict`` method. Classes inheriting ``AbstractPrior`` should not overwrite ``__call__`` and should instead define a ``predict`` method. Args: test_inputs: Input locations where the GP should be evaluated. return_covariance_type: Literal denoting whether to return the full covariance of the joint predictive distribution at the test_inputs (dense) or just the the standard-deviation of the predictive distribution at the test_inputs. Returns: GaussianDistribution: A multivariate normal random variable representation of the Gaussian process. """ return self.predict( test_inputs, return_covariance_type=return_covariance_type, )
[docs] @abstractmethod def predict( self, test_inputs: Num[Array, "N D"], *, return_covariance_type: Literal["dense", "diagonal"] = "dense", ) -> GaussianDistribution: r"""Evaluate the predictive distribution. Compute the latent function's multivariate normal distribution for a given set of parameters. For any class inheriting the `AbstractPrior` class, this method must be implemented. Args: test_inputs: Input locations where the GP should be evaluated. return_covariance_type: Literal denoting whether to return the full covariance of the joint predictive distribution at the test_inputs (dense) or just the the standard-deviation of the predictive distribution at the test_inputs. Returns: GaussianDistribution: A multivariate normal random variable representation of the Gaussian process. """ raise NotImplementedError
####################### # GP Priors #######################
[docs] class Prior(AbstractPrior[M, K]): r"""A Gaussian process prior object. The GP is parameterised by a mean and kernel function. A Gaussian process prior parameterised by a mean function $m(\cdot)$ and a kernel function $k(\cdot, \cdot)$ is given by $p(f(\cdot)) = \mathcal{GP}(m(\cdot), k(\cdot, \cdot))$. To invoke a `Prior` distribution, a kernel and mean function must be specified. Example: >>> import gpjax as gpx >>> kernel = gpx.kernels.RBF() >>> meanf = gpx.mean_functions.Zero() >>> prior = gpx.gps.Prior(mean_function=meanf, kernel = kernel) .. seealso:: :doc:`/examples/intro_to_gps` derives the prior from first principles, and :doc:`/examples/regression` puts one to work end to end. """ if tp.TYPE_CHECKING: @tp.overload def __mul__(self, other: GL) -> "ConjugatePosterior[Prior[M, K], GL]": ... @tp.overload def __mul__(self, other: NGL) -> "NonConjugatePosterior[Prior[M, K], NGL]": ... @tp.overload def __mul__(self, other: L) -> "AbstractPosterior[Prior[M, K], L]": ... def __mul__(self, other): r"""Combine the prior with a likelihood to form a posterior distribution. The product of a prior and likelihood is proportional to the posterior distribution. By computing the product of a GP prior and a likelihood object, a posterior GP object will be returned. Mathematically, this can be described by: .. math:: p(f(\cdot) \mid y) \propto p(y \mid f(\cdot))p(f(\cdot)), where $p(y | f(\cdot))$ is the likelihood and $p(f(\cdot))$ is the prior. Example: >>> import gpjax as gpx >>> meanf = gpx.mean_functions.Zero() >>> kernel = gpx.kernels.RBF() >>> prior = gpx.gps.Prior(mean_function=meanf, kernel = kernel) >>> likelihood = gpx.likelihoods.Gaussian(num_datapoints=100) >>> prior * likelihood Args: other (Likelihood): The likelihood distribution of the observed dataset. Returns: Posterior: The relevant GP posterior for the given prior and likelihood. Special cases are accounted for where the model is conjugate. """ return construct_posterior(prior=self, likelihood=other) if tp.TYPE_CHECKING: @tp.overload def __rmul__(self, other: GL) -> "ConjugatePosterior[Prior[M, K], GL]": ... @tp.overload def __rmul__(self, other: NGL) -> "NonConjugatePosterior[Prior[M, K], NGL]": ... @tp.overload def __rmul__(self, other: L) -> "AbstractPosterior[Prior[M, K], L]": ... def __rmul__(self, other): r"""Combine the prior with a likelihood to form a posterior distribution. Reimplement the multiplication operator to allow for order-invariant product of a likelihood and a prior i.e., likelihood * prior. Args: other (Likelihood): The likelihood distribution of the observed dataset. Returns: Posterior: The relevant GP posterior for the given prior and likelihood. Special cases are accounted for where the model is conjugate. """ return self.__mul__(other)
[docs] def predict( self, test_inputs: Num[Array, "N D"], *, return_covariance_type: Literal["dense", "diagonal"] = "dense", ) -> GaussianDistribution: r"""Compute the predictive prior distribution for a given set of parameters. The output of this function is a ``GaussianDistribution`` for a given set of inputs. In the following example, we compute the predictive prior distribution and then evaluate it on the interval :math:`[0, 1]`: Example: >>> import gpjax as gpx >>> import jax.numpy as jnp >>> kernel = gpx.kernels.RBF() >>> mean_function = gpx.mean_functions.Zero() >>> prior = gpx.gps.Prior(mean_function=mean_function, kernel=kernel) >>> prior.predict(jnp.linspace(0, 1, 100)[:, None]) Args: test_inputs (Float[Array, "N D"]): The inputs at which to evaluate the prior distribution. return_covariance_type: Literal denoting whether to return the full covariance of the joint predictive distribution at the test_inputs (dense) or just the the standard-deviation of the predictive distribution at the test_inputs. Returns: GaussianDistribution: A multivariate normal random variable representation of the Gaussian process. """ mean_at_test = self.mean_function(test_inputs) if return_covariance_type == "dense": Kxx_dense = add_jitter( self.kernel.gram(test_inputs).as_matrix(), self.jitter ) cov = lx.MatrixLinearOperator(Kxx_dense) else: Ktt_diag = lx.diagonal(self.kernel.diagonal(test_inputs)) var = Ktt_diag + self.jitter cov = lx.DiagonalLinearOperator(jnp.atleast_1d(var.squeeze())) return GaussianDistribution( loc=jnp.atleast_1d(mean_at_test.squeeze()), scale=cov )
[docs] def sample_approx( self, num_samples: int, key: KeyArray, num_features: tp.Optional[int] = 100, ) -> FunctionalSample: r"""Approximate samples from the Gaussian process prior. Build an approximate sample from the Gaussian process prior. This method provides a function that returns the evaluations of a sample across any given inputs. In particular, we approximate the Gaussian processes' prior as the finite feature approximation $\hat{f}(x) = \sum_{i=1}^m\phi_i(x)\theta_i$ where $\phi_i$ are $m$ features sampled from the Fourier feature decomposition of the model's kernel and $\theta_i$ are samples from a unit Gaussian. A key property of such functional samples is that the same sample draw is evaluated for all queries. Consistency is a property that is prohibitively costly to ensure when sampling exactly from the GP prior, as the cost of exact sampling scales cubically with the size of the sample. In contrast, finite feature representations can be evaluated with constant cost regardless of the required number of queries. In the following example, we build 10 such samples and then evaluate them over the interval $[0, 1]$: For a `prior` distribution, the following code snippet will build and evaluate an approximate sample. Example: >>> import gpjax as gpx >>> import jax.numpy as jnp >>> import jax.random as jr >>> key = jr.key(123) >>> >>> meanf = gpx.mean_functions.Zero() >>> kernel = gpx.kernels.RBF(n_dims=1) >>> prior = gpx.gps.Prior(mean_function=meanf, kernel = kernel) >>> >>> sample_fn = prior.sample_approx(10, key) >>> sample_fn(jnp.linspace(0, 1, 100).reshape(-1, 1)) Args: num_samples (int): The desired number of samples. key (KeyArray): The random seed used for the sample(s). num_features (int): The number of features used when approximating the kernel. Returns: FunctionalSample: A function representing an approximate sample from the Gaussian process prior. """ if (not isinstance(num_samples, int)) or num_samples <= 0: raise ValueError("num_samples must be a positive integer") freq_key, weight_key = jr.split(key) fourier_feature_fn = _build_fourier_features_fn(self, num_features, freq_key) feature_weights = jr.normal(weight_key, [num_samples, 2 * num_features]) def sample_fn(test_inputs: Float[Array, "N D"]) -> Float[Array, "N B"]: feature_evals = fourier_feature_fn(test_inputs) evaluated_sample = jnp.inner(feature_evals, feature_weights) return self.mean_function(test_inputs) + evaluated_sample return sample_fn
P = tp.TypeVar("P", bound=AbstractPrior) ####################### # GP Posteriors #######################
[docs] class AbstractPosterior(_SummaryMixin, eqx.Module, tp.Generic[P, L]): r"""Abstract Gaussian process posterior. The base GP posterior object conditioned on an observed dataset. All posterior objects should inherit from this class. """ prior: AbstractPrior likelihood: tp.Any jitter: float = eqx.field(static=True, default=1e-6) def __init__( self, prior: AbstractPrior[M, K], likelihood: L, jitter: float = 1e-6, ): r"""Construct a Gaussian process posterior. Args: prior (AbstractPrior): The prior distribution. likelihood (AbstractLikelihood): The likelihood distribution. jitter (float): A small constant added to the diagonal of the covariance matrix to ensure numerical stability. """ self.prior = prior self.likelihood = likelihood self.jitter = jitter def __call__( self, test_inputs: Num[Array, "N D"], train_data: Dataset, *, return_covariance_type: Literal["dense", "diagonal"] = "dense", ) -> GaussianDistribution: r"""Evaluate the Gaussian process posterior at the given points. The output of this function is a ``GaussianDistribution`` from which the latent function's mean and covariance can be evaluated and the distribution can be sampled. Under the hood, ``__call__`` invokes the ``predict`` method. Classes inheriting ``AbstractPosterior`` should not overwrite ``__call__`` and should instead define a ``predict`` method. Args: test_inputs: Input locations where the GP should be evaluated. train_data: Training dataset to condition on. return_covariance_type: Literal denoting whether to return the full covariance of the joint predictive distribution at the test_inputs (dense) or just the the standard-deviation of the predictive distribution at the test_inputs. Returns: GaussianDistribution: A multivariate normal random variable representation of the Gaussian process. """ return self.predict( test_inputs, train_data, return_covariance_type=return_covariance_type, )
[docs] @abstractmethod def predict( self, test_inputs: Num[Array, "N D"], train_data: Dataset, *, return_covariance_type: Literal["dense", "diagonal"] = "dense", ) -> GaussianDistribution: r"""Compute the latent function's multivariate normal distribution for a given set of parameters. For any class inheriting the `AbstractPosterior` class, this method must be implemented. Args: test_inputs: Input locations where the GP should be evaluated. train_data: Training dataset to condition on. return_covariance_type: Literal denoting whether to return the full covariance of the joint predictive distribution at the test_inputs (dense) or just the the standard-deviation of the predictive distribution at the test_inputs. Returns: GaussianDistribution: A multivariate normal random variable representation of the Gaussian process. """ raise NotImplementedError
[docs] class LatentPosterior(AbstractPosterior[P, L]): r"""A posterior shell used to expose prior structure without inference."""
[docs] def predict( self, test_inputs: Num[Array, "N D"], train_data: Dataset, *, return_covariance_type: Literal["dense", "diagonal"] = "dense", ) -> GaussianDistribution: raise NotImplementedError( "LatentPosteriors are a lightweight wrapper for priors and do not " "implement predictive distributions. Use a variational family for inference." )
[docs] class ConjugatePosterior(AbstractPosterior[P, GL]): r"""A Conjuate Gaussian process posterior object. A Gaussian process posterior distribution when the constituent likelihood function is a Gaussian distribution. In such cases, the latent function values $f$ can be analytically integrated out of the posterior distribution. As such, many computational operations can be simplified; something we make use of in this object. For a Gaussian process prior $p(\mathbf{f})$ and a Gaussian likelihood $p(y | \mathbf{f}) = \mathcal{N}(y\mid \mathbf{f}, \sigma^2))$ where $\mathbf{f} = f(\mathbf{x})$, the predictive posterior distribution at a set of inputs $\mathbf{x}$ is given by .. math:: \begin{aligned} p(\mathbf{f}^{\star}\mid \mathbf{y}) & = \int p(\mathbf{f}^{\star}, \mathbf{f} \mid \mathbf{y})\\ & =\mathcal{N}(\mathbf{f}^{\star} \boldsymbol{\mu}_{\mid \mathbf{y}}, \boldsymbol{\Sigma}_{\mid \mathbf{y}} \end{aligned} where .. math:: \begin{aligned} \boldsymbol{\mu}_{\mid \mathbf{y}} & = k(\mathbf{x}^{\star}, \mathbf{x})\left(k(\mathbf{x}, \mathbf{x}')+\sigma^2\mathbf{I}_n\right)^{-1}\mathbf{y} \\ \boldsymbol{\Sigma}_{\mid \mathbf{y}} & =k(\mathbf{x}^{\star}, \mathbf{x}^{\star\prime}) -k(\mathbf{x}^{\star}, \mathbf{x})\left( k(\mathbf{x}, \mathbf{x}') + \sigma^2\mathbf{I}_n \right)^{-1}k(\mathbf{x}, \mathbf{x}^{\star}). \end{aligned} Example: >>> import gpjax as gpx >>> import jax.numpy as jnp >>> >>> prior = gpx.gps.Prior( ... mean_function = gpx.mean_functions.Zero(), ... kernel = gpx.kernels.RBF() ... ) >>> likelihood = gpx.likelihoods.Gaussian(num_datapoints=100) >>> >>> posterior = prior * likelihood """
[docs] def predict( self, test_inputs: Num[Array, "M D"], train_data: Dataset, *, return_covariance_type: Literal["dense", "diagonal"] = "dense", ) -> GaussianDistribution: r"""Query the predictive posterior distribution. Conditional on a training data set, compute the GP's posterior predictive distribution for a given set of parameters. The returned function can be evaluated at a set of test inputs to compute the corresponding predictive density. The predictive distribution of a conjugate GP is given by $$ p(\mathbf{f}^{\star}\mid \mathbf{y}) & = \int p(\mathbf{f}^{\star} \mathbf{f} \mid \mathbf{y})\\ & =\mathcal{N}(\mathbf{f}^{\star} \boldsymbol{\mu}_{\mid \mathbf{y}}, \boldsymbol{\Sigma}_{\mid \mathbf{y}} $$ where $$ \boldsymbol{\mu}_{\mid \mathbf{y}} & = k(\mathbf{x}^{\star}, \mathbf{x})\left(k(\mathbf{x}, \mathbf{x}')+\sigma^2\mathbf{I}_n\right)^{-1}\mathbf{y} \\ \boldsymbol{\Sigma}_{\mid \mathbf{y}} & =k(\mathbf{x}^{\star}, \mathbf{x}^{\star\prime}) -k(\mathbf{x}^{\star}, \mathbf{x})\left( k(\mathbf{x}, \mathbf{x}') + \sigma^2\mathbf{I}_n \right)^{-1}k(\mathbf{x}, \mathbf{x}^{\star}). $$ The conditioning set is a GPJax `Dataset` object, whilst predictions are made on a regular Jax array. Example: >>> import gpjax as gpx >>> import jax.numpy as jnp >>> >>> xtrain = jnp.linspace(0, 1).reshape(-1, 1) >>> ytrain = jnp.sin(xtrain) >>> D = gpx.Dataset(X=xtrain, y=ytrain) >>> xtest = jnp.linspace(0, 1).reshape(-1, 1) >>> >>> prior = gpx.gps.Prior(mean_function = gpx.mean_functions.Zero(), kernel = gpx.kernels.RBF()) >>> posterior = prior * gpx.likelihoods.Gaussian(num_datapoints = D.n) >>> predictive_dist = posterior(xtest, D) Args: test_inputs (Num[Array, "N D"]): A Jax array of test inputs at which the predictive distribution is evaluated. train_data (Dataset): A `gpx.Dataset` object that contains the input and output data used for training dataset. return_covariance_type: Literal denoting whether to return the full covariance of the joint predictive distribution at the test_inputs (dense) or just the the standard-deviation of the predictive distribution at the test_inputs. Returns: GaussianDistribution: A function that accepts an input array and returns the predictive distribution as a `GaussianDistribution`. """ import warnings kernel = self.prior.kernel x, y = train_data.X, train_data.y P = self.likelihood.num_outputs # Prepare targets via likelihood protocol (identity for single-output, # output-major reshape for multi-output) mx = self.prior.mean_function(x) y_flat, mx_flat = self.likelihood.prepare_targets(y, mx) noise = self.likelihood.noise_vector(train_data.n) Kxx = kernel.gram(x) Kxx_dense = add_jitter(Kxx.as_matrix(), self.jitter) Sigma_dense = Kxx_dense + jnp.diag(noise) L_sigma = jnp.linalg.cholesky(Sigma_dense) Kxt = kernel.cross_covariance(x, test_inputs) L_inv_Kxt = jsp.linalg.solve_triangular(L_sigma, Kxt, lower=True) L_inv_y_diff = jsp.linalg.solve_triangular( L_sigma, y_flat - mx_flat, lower=True ) mean_t_raw = self.prior.mean_function(test_inputs) mean_t = jnp.tile(mean_t_raw, (P, 1)) if P > 1 else mean_t_raw mean = mean_t + jnp.matmul(L_inv_Kxt.T, L_inv_y_diff) # Diagonal covariance not yet supported for multi-output if return_covariance_type == "diagonal" and P > 1: warnings.warn( "Diagonal covariance is not yet supported for multi-output GPs. " "Returning full covariance.", stacklevel=2, ) return_covariance_type = "dense" if return_covariance_type == "dense": Ktt = kernel.gram(test_inputs).as_matrix() covariance = Ktt - jnp.matmul(L_inv_Kxt.T, L_inv_Kxt) covariance = add_jitter(covariance, self.prior.jitter) cov = lx.MatrixLinearOperator(covariance) else: Ktt_diag = lx.diagonal(kernel.diagonal(test_inputs)) var = ( Ktt_diag - jnp.einsum("ij,ji->i", L_inv_Kxt.T, L_inv_Kxt) + self.prior.jitter ) cov = lx.DiagonalLinearOperator(jnp.atleast_1d(var.squeeze())) return GaussianDistribution(loc=jnp.atleast_1d(mean.squeeze()), scale=cov)
[docs] def sample_approx( self, num_samples: int, train_data: Dataset, key: KeyArray, num_features: int | None = 100, ) -> FunctionalSample: r"""Draw approximate samples from the Gaussian process posterior. Build an approximate sample from the Gaussian process posterior. This method provides a function that returns the evaluations of a sample across any given inputs. Unlike when building approximate samples from a Gaussian process prior, decompositions based on Fourier features alone rarely give accurate samples. Therefore, we must also include an additional set of features (known as canonical features) to better model the transition from Gaussian process prior to Gaussian process posterior. For more details see [Wilson et. al. (2020)](https://arxiv.org/abs/2002.09309). In particular, we approximate the Gaussian processes' posterior as the finite feature approximation $\hat{f}(x) = \sum_{i=1}^m \phi_i(x)\theta_i + \sum{j=1}^N v_jk(.,x_j)$ where $\phi_i$ are m features sampled from the Fourier feature decomposition of the model's kernel and $k(., x_j)$ are N canonical features. The Fourier weights $\theta_i$ are samples from a unit Gaussian. See [Wilson et. al. (2020)](https://arxiv.org/abs/2002.09309) for expressions for the canonical weights $v_j$. A key property of such functional samples is that the same sample draw is evaluated for all queries. Consistency is a property that is prohibitively costly to ensure when sampling exactly from the GP prior, as the cost of exact sampling scales cubically with the size of the sample. In contrast, finite feature representations can be evaluated with constant cost regardless of the required number of queries. Args: num_samples (int): The desired number of samples. key (KeyArray): The random seed used for the sample(s). num_features (int): The number of features used when approximating the kernel. Returns: FunctionalSample: A function representing an approximate sample from the Gaussian process prior. """ if (not isinstance(num_samples, int)) or num_samples <= 0: raise ValueError("num_samples must be a positive integer") # sample fourier features freq_key, weight_key, noise_key = jr.split(key, 3) fourier_feature_fn = _build_fourier_features_fn( self.prior, num_features, freq_key ) fourier_weights = jr.normal(weight_key, [num_samples, 2 * num_features]) obs_var = _val(self.likelihood.obs_stddev) ** 2 Kxx = self.prior.kernel.gram(train_data.X) Sigma_dense = add_jitter(Kxx.as_matrix(), obs_var + self.jitter) L_sigma = jnp.linalg.cholesky(Sigma_dense) eps = jnp.sqrt(obs_var) * jr.normal(noise_key, [train_data.n, num_samples]) y = train_data.y - self.prior.mean_function(train_data.X) Phi = fourier_feature_fn(train_data.X) # Solve L_sigma @ canonical_weights = rhs rhs = y + eps - jnp.inner(Phi, fourier_weights) canonical_weights = jsp.linalg.cho_solve((L_sigma, True), rhs) # [N, B] def sample_fn(test_inputs: Float[Array, "n D"]) -> Float[Array, "n B"]: fourier_features = fourier_feature_fn(test_inputs) weight_space_contribution = jnp.inner(fourier_features, fourier_weights) canonical_features = self.prior.kernel.cross_covariance( test_inputs, train_data.X ) function_space_contribution = jnp.matmul( canonical_features, canonical_weights ) return ( self.prior.mean_function(test_inputs) + weight_space_contribution + function_space_contribution ) return sample_fn
[docs] class NonConjugatePosterior(AbstractPosterior[P, NGL]): r"""A non-conjugate Gaussian process posterior object. A Gaussian process posterior object for models where the likelihood is non-Gaussian. Unlike the `ConjugatePosterior` object, the `NonConjugatePosterior` object does not provide an exact marginal log-likelihood function. Instead, the `NonConjugatePosterior` object represents the posterior distributions as a function of the model's hyperparameters and the latent function. Markov chain Monte Carlo, variational inference, or Laplace approximations can then be used to sample from, or optimise an approximation to, the posterior distribution. """ latent: tp.Any def __init__( self, prior: P, likelihood: NGL, latent: tp.Union[Float[Array, "N 1"], AbstractUnwrappable, None] = None, jitter: float = 1e-6, key: KeyArray = jr.key(42), ): r"""Construct a non-conjugate Gaussian process posterior. Args: prior (AbstractPrior): The prior distribution. likelihood (AbstractLikelihood): The likelihood distribution. jitter (float): A small constant added to the diagonal of the covariance matrix to ensure numerical stability. """ super().__init__(prior=prior, likelihood=likelihood, jitter=jitter) if latent is None: latent = jr.normal(key, shape=(self.likelihood.num_datapoints, 1)) self.latent = ( latent if isinstance(latent, AbstractUnwrappable) else Real(latent) )
[docs] def predict( self, test_inputs: Num[Array, "M D"], train_data: Dataset, *, return_covariance_type: Literal["dense", "diagonal"] = "dense", ) -> GaussianDistribution: r"""Query the predictive posterior distribution. Conditional on a set of training data, compute the GP's posterior predictive distribution for a given set of parameters. The returned function can be evaluated at a set of test inputs to compute the corresponding predictive density. Note, to gain predictions on the scale of the original data, the returned distribution will need to be transformed through the likelihood function's inverse link function. Args: test_inputs (Num[Array, "N D"]): A Jax array of test inputs at which the predictive distribution is evaluated. train_data (Dataset): A `gpx.Dataset` object that contains the input and output data used for training dataset. return_covariance_type: Literal denoting whether to return the full covariance of the joint predictive distribution at the test_inputs (dense) or just the the standard-deviation of the predictive distribution at the test_inputs. Returns: GaussianDistribution: A function that accepts an input array and returns the predictive distribution as a `dx.Distribution`. """ x = train_data.X t = test_inputs mean_function = self.prior.mean_function kernel = self.prior.kernel # Precompute lower triangular of Gram matrix Kxx = kernel.gram(x) Kxx_dense = add_jitter(Kxx.as_matrix(), self.prior.jitter) Lx = jnp.linalg.cholesky(Kxx_dense) Kxt = kernel.cross_covariance(x, t) # Lx^{-1} Kxt Lx_inv_Kxt = jsp.linalg.solve_triangular(Lx, Kxt, lower=True) mean_t = mean_function(t) # Whitened function values, wx, corresponding to the inputs, x wx = _val(self.latent) # mut + Ktx Lx^{-1} wx mean = mean_t + jnp.matmul(Lx_inv_Kxt.T, wx) if return_covariance_type == "dense": Ktt = kernel.gram(test_inputs).as_matrix() covariance = Ktt - jnp.matmul(Lx_inv_Kxt.T, Lx_inv_Kxt) covariance = add_jitter(covariance, self.prior.jitter) cov = lx.MatrixLinearOperator(covariance) else: Ktt_diag = lx.diagonal(kernel.diagonal(test_inputs)) var = ( Ktt_diag - jnp.einsum("ij,ji->i", Lx_inv_Kxt.T, Lx_inv_Kxt) + self.prior.jitter ) cov = lx.DiagonalLinearOperator(jnp.atleast_1d(var.squeeze())) return GaussianDistribution(jnp.atleast_1d(mean.squeeze()), cov)
[docs] class HeteroscedasticPosterior(LatentPosterior[P, HL]): r"""Posterior shell for heteroscedastic likelihoods. The posterior retains both the signal and noise priors; inference is delegated to variational families and specialised objectives. """ noise_prior: tp.Any noise_posterior: tp.Any def __init__( self, prior: AbstractPrior[M, K], likelihood: HL, jitter: float = 1e-6, ): if likelihood.noise_prior is None: raise ValueError("Heteroscedastic likelihoods require a noise_prior.") super().__init__(prior=prior, likelihood=likelihood, jitter=jitter) self.noise_prior = likelihood.noise_prior self.noise_posterior = LatentPosterior( prior=self.noise_prior, likelihood=likelihood, jitter=jitter )
[docs] class ChainedPosterior(HeteroscedasticPosterior[P, HL]): r"""Posterior routed for heteroscedastic likelihoods using chained bounds.""" def __init__( self, prior: AbstractPrior[M, K], likelihood: HL, jitter: float = 1e-6, ): super().__init__(prior=prior, likelihood=likelihood, jitter=jitter)
####################### # Utils ####################### @tp.overload def construct_posterior(prior: P, likelihood: GL) -> ConjugatePosterior[P, GL]: ... @tp.overload def construct_posterior(prior: P, likelihood: NGL) -> NonConjugatePosterior[P, NGL]: ... @tp.overload def construct_posterior( prior: P, likelihood: HeteroscedasticGaussian ) -> HeteroscedasticPosterior[P, HeteroscedasticGaussian]: ... @tp.overload def construct_posterior( prior: P, likelihood: AbstractHeteroscedasticLikelihood ) -> ChainedPosterior[P, AbstractHeteroscedasticLikelihood]: ...
[docs] def construct_posterior( prior: AbstractPrior, likelihood: AbstractLikelihood ) -> "AbstractPosterior": r"""Utility function for constructing a posterior object from a prior and likelihood. The function will automatically select the correct posterior object based on the likelihood. Args: prior (Prior): The Prior distribution. likelihood (AbstractLikelihood): The likelihood that represents our beliefs around the distribution of the data. Returns: AbstractPosterior: A posterior distribution. If the likelihood is Gaussian, then a `ConjugatePosterior` will be returned. Otherwise, a `NonConjugatePosterior` will be returned. """ # Multi-output validation from gpjax.kernels.multioutput.base import MultiOutputKernel from gpjax.likelihoods import MultiOutputGaussian is_mo_kernel = isinstance(prior.kernel, MultiOutputKernel) is_mo_likelihood = isinstance(likelihood, MultiOutputGaussian) if is_mo_likelihood and not is_mo_kernel: raise ValueError( "MultiOutputGaussian likelihood requires a multi-output kernel " "(e.g., ICMKernel)." ) if is_mo_kernel and not is_mo_likelihood: raise ValueError( "Multi-output kernels require a MultiOutputGaussian likelihood." ) if isinstance(likelihood, Gaussian): return ConjugatePosterior(prior=prior, likelihood=likelihood) if ( isinstance(likelihood, HeteroscedasticGaussian) and likelihood.supports_tight_bound() ): return HeteroscedasticPosterior(prior=prior, likelihood=likelihood) if isinstance(likelihood, AbstractHeteroscedasticLikelihood): return ChainedPosterior(prior=prior, likelihood=likelihood) return NonConjugatePosterior(prior=prior, likelihood=likelihood)
def _build_fourier_features_fn( prior: Prior, num_features: int, key: KeyArray ) -> tp.Callable[[Float[Array, "N D"]], Float[Array, "N L"]]: r"""Return a function that evaluates features sampled from the Fourier feature decomposition of the prior's kernel. Args: prior (Prior): The Prior distribution. num_features (int): The number of feature functions to be sampled. key (KeyArray): The random seed used. Returns: Callable: A callable function evaluating the sampled feature functions. """ if (not isinstance(num_features, int)) or num_features <= 0: raise ValueError("num_features must be a positive integer") # Approximate kernel with feature decomposition approximate_kernel = RFF( base_kernel=prior.kernel, num_basis_fns=num_features, key=key ) def eval_fourier_features(test_inputs: Float[Array, "N D"]) -> Float[Array, "N L"]: Phi = approximate_kernel.compute_features(x=test_inputs) Phi *= jnp.sqrt(_val(prior.kernel.variance) / num_features) return Phi return eval_fourier_features __all__ = [ "AbstractPosterior", "AbstractPrior", "ChainedPosterior", "ConjugatePosterior", "HeteroscedasticPosterior", "LatentPosterior", "NonConjugatePosterior", "Prior", "construct_posterior", ]