Input Uncertainty for Gaussian Processes¶
- Author: J. Emmanuel Johnson
- Email: jemanjohnson34@gmail.com
- Documentation: jejjohnson.github.io/uncertain_gps
- Repo: github.com/jejjohnson/uncertain_gps
A graphical model of a GP algorithm with the addition of uncertainty component for the input.
This repository is home to my studies on uncertain inputs for Gaussian processes. Gaussian processes are a kernel Bayesian framework that is known to generalize well for small datasets and also offers predictive mean and predictive variance estimates. It is one of the most complete models that model uncertainty.
Demo showing the error bars for a standard GP predictive variance and an augmented predictive variance estimate using Taylor expansions.
In this repository, I am interested in exploring the capabilities and limits with Gaussian process regression algorithms when handling noisy inputs. Input uncertainty is often not talked about in the machine learning literature, so I will be exploring this in great detail for my thesis.
Taylor Approximation¶
We can approximate the predictive mean and variance equations via a Taylor expansion which adds a corrective term w.r.t. the derivative of the function and the known variance. This assumes we know the variance and we don't modify the predictive mean of the learned GP function.
1D Demo
Here, we see a plot for the differences between the two GPs.
Satellite Data
These are the predictions using the exact GP and the predictive variances.
This is an example where we used the Taylor expanded GP. In this example, we only did the first order approximation.
Unscented Transforms¶
The predictive mean and variance using the Unscented transformation.
Variational Inference¶
TODO
Monte Carlo Estimation¶
1D Example
My Resources¶
Literature Review¶
I have gone through most of the relevant works related to noisy inputs in the context of Gaussian processes. It is very extensive and it also offers some literature that is relevant but may not explicitly mentioned uncertain inputs in the paper.
Documentation¶
I have some documentation which has all of my personal notes and derivations related to GPs and noisy inputs. Some highlights include the Taylor approximation, moment matching and variational inference.
GP Model Zoo¶
I have documented and try to keep up with some of the latest Gaussian process literature in my repository.