Variational and Approximate QEPs¶
Variational and approximate q-exponential processes are used in a variety of cases:
When the likelihood is non-Gaussian (e.g. for classification).
To scale up QEP regression (by using stochastic optimization).
To use QEPs as part of larger probabilistic models.
With QPyTorch it is possible to implement various types approximate QEP models. All approximate models consist of the following 3 composable objects:
VariationalDistribution, which define the form of the approximate inducing value posterior \(q(\mathbf u)\).VarationalStrategies, which define how to compute \(q(\mathbf f(\mathbf X))\) from \(q(\mathbf u)\)._ApproximateMarginalLogLikelihood, which defines the objective function to learn the approximate posterior (e.g. variational ELBO).
(See the strategy/distribution comparison for examples of the different classes.) The variational documentation has more information on how to use these objects. Here we provide some examples which highlight some of the common use cases:
Large-scale regression (when exact methods are too memory intensive): see the stochastic variational regression example.
Variational inference with natural gradient descent (for faster/better optimization): see the ngd example.
Variational inference with contour integral quadrature (for large numbers of inducing points): see the ciq example.
Variational inference with nearest neighbor approximation (for large numbers of inducing points): see the vnnqep example.
Variational distribution options for different scalability/expressiveness: see the strategy/distribution comparison.
Alternative optimization objectives (not fully tested) for the QEP’s predictive distribution: see the approximate QEP objective functions notebook. This example compares and contrasts the variational ELBO with the predictive log likelihood of Jankowiak et al., 2020.
Classification: see the non-Gaussian likelihood notebook and the Polya-Gamma Binary Classification notebook.
Multi-output variational QEPs (when exact methods are too memory intensive): see the variational QEPs with multiple outputs example.
Uncertain inputs: see the QEPs with uncertain inputs example.