How to turn a collection of small building blocks into a versatile tool for solving regression problems.
Even if you have spent some time reading about machine learning, chances are that you have never heard of Gaussian processes. And if you have, rehearsing the basics is always a good way to refresh your memory. With this blog post we want to give an introduction to Gaussian processes and make the mathematical intuition behind them more approachable.
Gaussian processes are a powerful tool in the machine learning toolbox
We will first explore the mathematical foundation that Gaussian processes are built on — we invite you to follow along using the interactive figures and hands-on examples. They help to explain the impact of individual components, and show the flexibility of Gaussian processes. After following this article we hope that you will have a visual intuition on how Gaussian processes work and how you can configure them for different types of data.
Before we can explore Gaussian processes, we need to understand the mathematical concepts they are based on. As the name suggests, the Gaussian distribution (which is often also referred to as normal distribution) is the basic building block of Gaussian processes. In particular, we are interested in the multivariate case of this distribution, where each random variable is distributed normally and their joint distribution is also Gaussian. The multivariate Gaussian distribution is defined by a mean vector and a covariance matrix . You can see an interactive example of such distributions in the figure below.
The mean vector describes the expected value of the distribution.
Each of its components describes the mean of the corresponding dimension.
models the variance along each dimension and determines how the different random variables are correlated.
The covariance matrix is always symmetric and positive semi-definite
We say follows a normal distribution. The covariance matrix describes the shape of the distribution. It is defined in terms of the expected value :
Visually, the distribution is centered around the mean and the covariance matrix defines its shape. The following figure shows the influence of these parameters on a two-dimensional Gaussian distribution. The variances for each random variable are on the diagonal of the covariance matrix, while the other values show the covariance between them.
Gaussian distributions are widely used to model the real world.
For example, we can employ them to describe errors of measurements or phenomena under the assumptions of the central limit theorem
Gaussian distributions have the nice algebraic property of being closed under conditioning and marginalization. Being closed under conditioning and marginalization means that the resulting distributions from these operations are also Gaussian, which makes many problems in statistics and machine learning tractable. In the following we will take a closer look at both of these operations, as they are the foundation for Gaussian processes.
Marginalization and conditioning both work on subsets of the original distribution and we will use the following notation:
With and representing subsets of original random variables.
Through marginalization we can extract partial information from multivariate probability distributions. In particular, given a normal probability distribution over vectors of random variables and , we can determine their marginalized probability distributions in the following way:
The interpretation of this equation is that each partition and only depends on its corresponding entries in and . To marginalize out a random variable from a Gaussian distribution we can simply drop the variables from and .
The way to interpret this equation is that if we are interested in the probability density of
, we need to consider all possible outcomes of
that can jointly lead to the result
Another important operation for Gaussian processes is conditioning. It is used to determine the probability of one variable depending on another variable. Similar to marginalization, this operation is also closed and yields a modified Gaussian distribution. This operation is the cornerstone of Gaussian processes since it allows Bayesian inference, which we will talk about in the next section. Conditioning is defined by:
Note that the new mean only depends on the conditioned variable, while the covariance matrix is independent from this variable.
Now that we have worked through the necessary equations, we will think about how we can understand the two operations visually. While marginalization and conditioning can be applied to multivariate distributions of many dimensions, it makes sense to consider the two-dimensional case as shown in the following figure. Marginalization can be seen as integrating along one of the dimensions of the Gaussian distribution, which is in line with the general definition of the marginal distribution. Conditioning also has a nice geometric interpretation — we can imagine it as making a cut through the multivariate distribution, yielding a new Gaussian distribution with fewer dimensions.
Now that we have recalled some of the basic properties of multivariate Gaussian distributions, we will combine them together to define Gaussian processes, and show how they can be used to tackle regression problems.
First, we will move from the continuous view to the discrete representation of a function: rather than finding an implicit function, we are interested in predicting the function values at concrete points, which we call test points . So how do we derive this functional view from the multivariate normal distributions that we have considered so far? Stochastic processes, such as Gaussian processes, are essentially a set of random variables. In addition, each of these random variables has a corresponding index . We will use this index to refer to the -th dimension of our -dimensional multivariate distributions. The following figure shows an example of this for two dimensions:
Now, the goal of Gaussian processes is to learn this underlying distribution from training data. Respective to the test data , we will denote the training data as . As we have mentioned before, the key idea of Gaussian processes is to model the underlying distribution of together with as a multivariate normal distribution. That means that the joint probability distribution spans the space of possible function values for the function that we want to predict. Please note that this joint distribution of test and training data has dimensions.
In order to perform regression on the training data, we will treat this problem as Bayesian inference. The essential idea of Bayesian inference is to update the current hypothesis as new information becomes available. In the case of Gaussian processes, this information is the training data. Thus, we are interested in the conditional probability . Finally, we recall that Gaussian distributions are closed under conditioning — so is also distributed normally.
Now that we have the basic framework of Gaussian processes together, there is only one thing missing: how do we set up this distribution and define the mean and the covariance matrix ? The covariance matrix is determined by its covariance function , which is often also called the kernel of the Gaussian process. We will talk about this in detail in the next section. But before we come to this, let us reflect on how we can use multivariate Gaussian distributions to estimate function values. The following figure shows an example of this using ten test points at which we want to predict our function:
In Gaussian processes we treat each test point as a random variable. A multivariate Gaussian distribution has the same number of dimensions as the number of random variables. Since we want to predict the function values at test points, the corresponding multivariate Gaussian distribution is also -dimensional. Making a prediction using a Gaussian process ultimately boils down to drawing samples from this distribution. We then interpret the -th component of the resulting vector as the function value corresponding to the -th test point.
Recall that in order to set up our distribution, we need to define and . In Gaussian processes it is often assumed that , which simplifies the necessary equations for conditioning. We can always assume such a distribution, even if , and add back to the resulting function values after the prediction step. This process is also called centering of the data. So configuring is straight forward — it gets more interesting when we look at the other parameter of the distribution.
The clever step of Gaussian processes is how we set up the covariance matrix . The covariance matrix will not only describe the shape of our distribution, but ultimately determines the characteristics of the function that we want to predict. We generate the covariance matrix by evaluating the kernel , which is often also called covariance function, pairwise on all the points. The kernel receives two points as an input and returns a similarity measure between those points in the form of a scalar:
We evaluate this function for each pairwise combination of the test points to retrieve the covariance matrix. This step is also depicted in the figure above. In order to get a better intuition for the role of the kernel, let’s think about what the entries in the covariance matrix describe. The entry describes how much influence the -th and -th point have on each other. This follows from the definition of the multivariate Gaussian distribution, which states that defines the correlation between the -th and the -th random variable. Since the kernel describes the similarity between the values of our function, it controls the possible shape that a fitted function can adopt. Note that when we choose a kernel, we need to make sure that the resulting matrix adheres to the properties of a covariance matrix.
Kernels are widely used in machine learning, for example in support vector machines
Kernels can be separated into stationary and non-stationary kernels. Stationary kernels, such as the RBF kernel or the periodic kernel, are functions invariant to translations, and the covariance of two points is only dependent on their relative position. Non-stationary kernels, such as the linear kernel, do not have this constraint and depend on an absolute location. The stationary nature of the RBF kernel can be observed in the banding around the diagonal of its covariance matrix (as shown in this figure). Increasing the length parameter increases the banding, as points further away from each other become more correlated. For the periodic kernel, we have an additional parameter that determines the periodicity, which controls the distance between each repetition of the function. In contrast, the parameter of the linear kernel allows us to change the point on which all functions hinge.
There are many more kernels that can describe different classes of functions, which can be used to model the desired shape of the function.
A good overview of different kernels is given by Duvenaud
We will now shift our focus back to the original task of regression. As we have mentioned earlier, Gaussian processes define a probability distribution over possible functions. In this figure above, we show this connection: each sample of our multivariate normal distribution represents one realization of our function values. Because this distribution is a multivariate Gaussian distribution, the distribution of functions is normal. Recall that we usually assume . For now, let’s consider the case where we have not yet observed any training data. In the context of Bayesian inference, this is called the prior distribution .
If we have not yet observed any training examples, this distribution revolves around , according to our original assumption. The prior distribution will have the same dimensionality as the number of test points . We will use the kernel to set up the covariance matrix, which has the dimensions .
In the previous section we have looked at examples of different kernels. The kernel is used to define the entries of the covariance matrix. Consequently, the covariance matrix determines which type of functions from the space of all possible functions are more probable. As the prior distribution does not yet contain any additional information, it is perfect to visualize the influence of the kernel on the distribution of functions. The following figure shows samples of potential functions from prior distributions that were created using different kernels:
Adjusting the parameters allows you to control the shape of the resulting functions. This also varies the confidence of the prediction. When decreasing the variance , a common parameter for all kernels, sampled functions are more concentrated around the mean . For the Linear kernel, setting the variance results in a set of functions constrained to perfectly intersect the offset point . If we set we can model uncertainty, resulting in functions that pass close to .
So what happens if we observe training data? Let’s get back to the model of Bayesian inference, which states that we can incorporate this additional information into our model, yielding the posterior distribution . We will now take a closer look at how to do this for Gaussian processes.
First, we form the joint distribution between the test points and the training points . The result is a multivariate Gaussian distribution with dimensions . As you can see in the figure below, we concatenate the training and the test points to compute the corresponding covariance matrix.
For the next step we need one operation on Gaussian distributions that we have defined earlier. Using conditioning we can find from . The dimensions of this new distribution matches the number of test points and the distribution is also normal. It is important to note that conditioning leads to derived versions of the mean and the standard deviation: . More details can be found in the related section on conditioning multivariate Gaussian distributions. The intuition behind this step is that the training points constrain the set of functions to those that pass through the training points.
As mentioned before, the conditional distribution forces the set of functions to precisely pass through each training point. In many cases this can lead to fitted functions that are unnecessarily complex. Also, up until now, we have considered the training points to be perfect measurements. But in real-world scenarios this is an unrealistic assumption, since most of our data is afflicted with measurement errors or uncertainty. Gaussian processes offer a simple solution to this problem by modeling the error of the measurements. For this, we need to add an error term to each of our training points:
We do this by slightly modifying the setup of the joint distribution :
Again, we can use conditioning to derive the predictive distribution . In this formulation, is an additional parameter of our model.
Analogous to the prior distribution, we could obtain a prediction for our function values by sampling from this distribution. But, since sampling involves randomness, the resulting fit to the data would not be deterministic and our prediction could end up being an outlier. In order to make a more meaningful prediction we can use the other basic operation of Gaussian distributions.
Through the marginalization of each random variable, we can extract the respective mean function value and standard deviation for the -th test point. In contrast to the prior distribution, where we set the mean to , the result of conditioning the joint distribution of test and training data will most likely have a non-zero mean . Extracting and does not only lead to a more meaningful prediction, it also allows us to make a statement about the confidence of the prediction.
The following figure shows an example of the conditional distribution. At first, no training points have been observed. Accordingly, the mean prediction remains at and the standard deviation is the same for each test point. By hovering over the covariance matrix you can see the influence of each point on the current test point. As long as no training points have been observed, the influence of neighboring points is limited locally.
The training points can be activated by clicking on them, which leads to a constrained distribution. This change is reflected in the entries of the covariance matrix, and leads to an adjustment of the mean and the standard deviation of the predicted function. As we would expect, the uncertainty of the prediction is small in regions close to the training data and grows as we move further away from those points.
In the constrained covariance matrix, we can see that the correlation of neighbouring points is affected by the training data. If a predicted point lies on the training data, there is no correlation with other points. Therefore, the function must pass directly through it. Predicted values further away are also affected by the training data — proportional to their distance.
As described earlier, the power of Gaussian processes lies in the choice of the kernel function. This property allows experts to introduce domain knowledge into the process and lends Gaussian processes their flexibility to capture trends in the training data. For example, by choosing a suitable bandwidth for the RBF kernel, we can control how smooth the resulting function will be.
A big benefit that kernels provide is that they can be combined together, resulting in a more specialized kernel. The decision which kernel to use is highly dependent on prior knowledge about the data, e.g. if certain characteristics are expected. Examples for this would be stationary nature, or global trends and patterns. As introduced in the section on kernels, stationary means that a kernel is translation invariant and therefore not dependent on the index . This also means that we cannot model global trends using a strictly stationary kernel. Remember that the covariance matrix of Gaussian processes has to be positive semi-definite. When choosing the optimal kernel combinations, all methods that preserve this property are allowed. The most common kernel combinations would be addition and multiplication.
Let’s consider two kernels, a linear kernel and a periodic kernel , for example. This is how we would multiply the two:
However, combinations are not limited to the above example, and there are more possibilities such as concatenation or composition with a function
Knowing more about how kernel combinations influence the shape of the resulting distribution, we can move on to a more complex example. In the figure below, the observed training data has an ascending trend with a periodic deviation. Using only a linear kernel, we can mimic a normal linear regression of the points. At first glance, the RBF kernel accurately approximates the points. But since the RBF kernel is stationary it will always return to in regions further away from observed training data. This decreases the accuracy for predictions that reach further into the past or the future. An improved model can be created by combining the individual kernels through addition, which maintains both the periodic nature and the global ascending trend of the data. This procedure can be used, for example, in the analysis of weather data.
As discussed in the section about GPs, a Gaussian process can model uncertain observations. This can be seen when only selecting the linear kernel, as it allows us to perform linear regression even if more than two points have been observed, and not all functions have to pass directly through the observed training data.
With this article, you should have obtained an overview of Gaussian processes, and developed a deeper understanding on how they work. As we have seen, Gaussian processes offer a flexible framework for regression and several extensions exist that make them even more versatile.
For instance, sometimes it might not be possible to describe the kernel in simple terms.
To overcome this challenge, learning specialized kernel functions from the underlying data, for example by using deep learning
If we have sparked your interest, we have compiled a list of further blog posts on the topic of Gaussian processes. In addition, we have linked two Python notebooks that will give you some hands-on experience and help you to get started right away.
We are very grateful to Carla Avolio and Marc Spicker for their feedback on the manuscript. In addition, we want to thank Jonas Körner for helping with the implementation of the figure explaining the multivariate Gaussian distribution. Furthermore, we would like to thank the German Research Foundation (DFG) for financial support within project A01 of the SFB-TRR 161 and within the Research Unit FOR 2111 with grant number DFG-431/16.
Review 1 - Anonymous
Review 2 - Anonymous
Review 3 - Austin Huang
The following blog posts offer more interactive visualizations and further reading material on the topic of Gaussian processes:
If you want more of a hands-on experience, there are also many Python notebooks available:
If you see mistakes or want to suggest changes, please create an issue on GitHub.
Diagrams and text are licensed under Creative Commons Attribution CC-BY 4.0 with the source available on GitHub, unless noted otherwise. The figures that have been reused from other sources don’t fall under this license and can be recognized by a note in their caption: “Figure from …”.
For attribution in academic contexts, please cite this work as
Görtler, et al., "A Visual Exploration of Gaussian Processes", Distill, 2019.
BibTeX citation
@article{görtler2019a, author = {Görtler, Jochen and Kehlbeck, Rebecca and Deussen, Oliver}, title = {A Visual Exploration of Gaussian Processes}, journal = {Distill}, year = {2019}, note = {https://distill.pub/2019/visual-exploration-gaussian-processes}, doi = {10.23915/distill.00017} }