Most machine-learning models hand you a single number: "the temperature tomorrow will be 22 °C." A Gaussian process hands you something richer: "the temperature will be 22 °C — but I'm only ±1 °C confident near your training data, and ±8 °C out where you've given me nothing."
That extra information — the confidence band — is not decoration. It tells you where the model is trustworthy and where it is merely extrapolating, which is exactly what you need before acting on a prediction.
The idea traces back to Carl Friedrich Gauss and was formalized for spatial statistics by Danie Krige in the 1950s (the technique is still called kriging in geostatistics). The modern machine-learning treatment was consolidated by Carl Edward Rasmussen and Christopher Williams in their 2006 textbook Gaussian Processes for Machine Learning, now the standard reference.
At heart a GP is a prior over functions: instead of placing a distribution over parameters (intercept, slope, …), you place a distribution directly over the space of all smooth functions. Add data and the prior narrows into a posterior — a whole family of functions that are consistent with what you observed, together with how likely each one is.
Comments
Loading comments...