Section 4.4.1 introduced Gaussian processes at the picture level, with just enough machinery to follow the Bayesian-optimization argument of Chapter Chapter 4: the definition , the squared-exponential kernel (4.2), and the closed-form posterior mean and variance (4.3)--(4.4). Those formulas took the kernel and its hyperparameters as given. The present chapter removes both shortcuts and develops the full machinery: it samples whole functions from the GP prior (Section 9.1), learns from data via the marginal-likelihood Occam’s razor (Section 9.2), expands the kernel zoo beyond the squared-exponential to Matérn and composite kernels (Section 9.2.1.1), uses the posterior variance to choose where to evaluate next via Bayesian Active Learning (Section 9.3), scales the whole machinery to high-dimensional inputs through active subspaces (Section 9.5), and embeds GPs inside value-function iteration for high-dimensional dynamic programming (Section 9.6). Two applications-driven chapters then put the machinery to work: structural estimation via surrogate-driven SMM (Chapter Chapter 10) and climate-policy uncertainty quantification (Chapter Chapter 11). Methodological foundations are the GP textbook of Rasmussen & Williams (2005) and the Bayesian-active-learning ideas dating back to MacKay (1992) and Krause et al. (2008). Embedding GPs inside dynamic programming was pioneered by Deisenroth et al. (2009) (GPDP) and Engel et al. (2005) (GP temporal-difference learning); within economics, applications include high-dimensional growth models Scheidegger & Bilionis, 2019, dynamic incentive problems Renner & Scheidegger, 2018, and deep uncertainty quantification for integrated assessment models Friedl et al., 2023. Sparse approximations Titsias, 2009Hensman et al., 2013 extend GPs beyond their cubic scaling limit; deep kernel learning combines neural-network feature extraction with GP inference and closes the chapter.
9.1Gaussian Process Regression¶
9.1.0.1Sampling from the GP prior.¶
Recall from Section 4.4.1 that for any finite set of test inputs , the function values are jointly Gaussian with prior mean (the entries ) and covariance matrix . To draw a function from the GP prior at those test inputs, evaluate , compute its Cholesky decomposition , draw , and set . The resulting paths have the smoothness, amplitude, and length scale dictated entirely by the kernel.
9.1.0.2Kernel choice.¶
The squared-exponential kernel (4.2) of Section 4.4.1 remains the right default for genuinely smooth targets, e.g. in the unconstrained interior of an ergodic set. In economic applications, however, the target function (value, policy, equilibrium price) often has kinks from occasionally binding constraints, and the Matérn- kernel introduced in Section 9.2.1.1 below is then a better default than RBF, since it does not oversmooth at non-differentiable features.
Figure 9.1:Squared-exponential kernel as a function of distance for three length scales. Small makes correlations decay quickly and produces rougher, more local fits; large couples distant points and imposes smoother functions.
Figure Figure 9.1 shows how the RBF length scale controls the distance over which observations remain informative. For any training dataset , the GP posterior at a test point has the closed-form mean and variance stated in (4.3)--(4.4), with the kernel matrix on training inputs, its noise-augmented version, the prior-mean vector at training inputs, and the cross-covariance whose -th entry is . For a noisy future observation the predictive variance is , and the common zero-mean formulas are recovered by centering outputs or setting .
9.1.0.3A hand-traceable 1D example.¶
To make (4.3)--(4.4) concrete, take , observe noiselessly at and (so ), and query at . Use the kernel and a tiny noise floor for numerical stability. The training kernel matrix is $$K + \sigma_y^2 I ;=;
;\approx;
;\approx;
Figure Figure 9.2 illustrates the GP prior and posterior for a simple one-dimensional regression problem. Before observing data, the GP prior has constant mean and uniform uncertainty. After conditioning on five observations, the posterior mean interpolates the data and the uncertainty bands collapse near the observations while remaining wide in unexplored regions.
Figure 9.2:Gaussian-process prior and posterior on a 1D regression problem. Left: the prior has constant mean (here zero) and uniform uncertainty; the shaded bands show the and credible intervals, and the thin grey curves are three sample paths drawn from the prior. Right: after conditioning on five observations (black dots), the posterior mean (red curve) interpolates the data exactly, and the credible band collapses near the observed points while widening in unexplored regions away from the data, giving the GP its built-in uncertainty quantification.
9.2Kernel Functions and Hyperparameter Learning¶
The kernel hyperparameters are learned by maximizing the log marginal likelihood:
where and is the prior mean evaluated on the training inputs. In the zero-mean convention used elsewhere in this section, set (or center the outputs).
9.2.0.1Why marginal likelihood?¶
The log evidence encodes both data fit and an automatic complexity penalty in a single closed-form expression. The quadratic form rewards hyperparameters that explain the centered observations with a small inverse-covariance norm, while the log-determinant term penalises overly flexible kernels that admit too many possible functions, giving Bayesian Occam’s razor Rasmussen & Williams, 2005. Compared with cross-validated MSE, this approach requires no held-out split, makes use of all observations, and exposes a closed-form gradient with respect to , which is essential for L-BFGS-style optimization in scikit-learn / GPyTorch. The maximum is reached at the kernel that is just expressive enough to fit the data but no more (Figure Figure 9.3).
Figure 9.3:Marginal-likelihood Occam’s razor for a GP. As the kernel becomes more flexible (smaller length scale ), the data-fit term improves but the complexity penalty grows linearly. Their sum, the log evidence, peaks at an interior optimum that is just expressive enough to explain the data, automatically. No held-out validation set is required.
9.2.0.2A free held-out diagnostic.¶
Marginal likelihood is not the only validation tool. The leave-one-out (LOO) predictive error of a GP admits a closed form using the same Cholesky factor already computed for posterior inference, so it costs nothing extra; we develop the formula in Section 9.6.5, where it serves as an iteration-by-iteration health check inside GP-based VFI, and reuse it in Section 10.1.4 for the GP layer over the SMM moment map.
9.2.1Kernel Composition¶
More complex covariance structures can be built by composing simpler kernels. The sum of two kernels is again a valid kernel, as is the product. For example:
: captures a smooth trend plus periodic oscillations.
: models interactions between two length scales.
9.2.1.1The Matérn kernel family.¶
The Matérn kernel is parameterized by a smoothness parameter :
where , is the length scale, and is the modified Bessel function of the second kind. The smoothness parameter controls the regularity of sample paths: a Matérn- GP is -times mean-square differentiable for every integer , with the RBF kernel recovered in the limit . Important special cases:
: the Ornstein--Uhlenbeck kernel ; sample paths are continuous but nowhere differentiable.
: ; once differentiable.
: ; twice differentiable.
: recovers the squared exponential (RBF) kernel; infinitely differentiable.
For economic applications where the target function may have kinks (e.g., due to occasionally binding constraints), the Matérn-3/2 kernel is often a better choice than the infinitely smooth RBF kernel, as it does not oversmooth near non-differentiable features Renner & Scheidegger, 2018.
9.3Bayesian Active Learning for Sample-Efficient Training¶
When model evaluations are expensive, we wish to select training points that provide maximal information. Bayesian Active Learning (BAL) uses the GP posterior variance to guide this selection. The information-theoretic foundations go back to MacKay (1992), with submodular guarantees for variance-based sensor placement established by Krause et al. (2008) and the widely used upper-confidence-bound formulation of Srinivas et al. (2010).
9.3.0.1Connection to Bayesian optimization (Chapter Chapter 4).¶
BAL is the active-learning twin of the Bayesian-optimization (BO) recipe introduced in Chapter Chapter 4: same GP surrogate, same acquisition-function machinery. The difference is the target. BO seeks a scalar optimum of the surrogate (e.g. Expected Improvement steers samples toward ), so its acquisition trades exploration against the chance of beating the current best. BAL instead targets global function approximation: it allocates samples wherever posterior variance is largest, irrespective of the predicted value. Both reduce to the same primitive (fit GP, maximise acquisition, evaluate, refit), but the choice of acquisition reflects whether one wants the best point or the best surrogate.
The BAL algorithm concentrates training points near kinks, boundary layers, and other regions where the function is hardest to approximate, achieving the same accuracy as uniform sampling with far fewer evaluations Renner & Scheidegger, 2018. The exploration--exploitation trade-off controlled by ensures that the algorithm balances refining the approximation in already well-sampled regions against exploring uncharted territory.
The intuition behind the acquisition function is as follows. The first term favors regions where the predicted function value is large (exploitation: sample where the function is interesting). The second term favors regions of high uncertainty (exploration: sample where we know least). This acquisition function belongs to the Upper Confidence Bound (UCB) family Srinivas et al., 2010: with it has the same maximizers as pure posterior-variance sampling, while the logarithmic variance weighting provides a more conservative exploration bonus than the standard-deviation weighting used in GP-UCB when it is combined with exploitation. By adjusting and , the practitioner can control the balance. For economic applications where the entire domain is relevant (e.g., approximating a policy function), a pure exploration strategy (, ) is often appropriate, reducing BAL to an uncertainty sampling scheme that minimizes the integrated posterior variance. Figure Figure 9.4 illustrates two BAL iterations on a 1D toy.

Figure 9.4:Bayesian Active Learning in action. (a) Starting from three initial observations (red dots), the GP posterior mean (blue line) deviates from the true function (dashed black) in the data-sparse region, where the 95% credible band (blue shading) is wide. (b) The acquisition function selects the point of maximum posterior variance (green diamond); after evaluation, the posterior tightens locally and the mean improves. (c) A second active-learning iteration fills the remaining gap. With only five strategically chosen points, the GP posterior closely tracks the true function across the entire domain.
9.4When to Use GPs vs. DNNs¶
Now that the GP machinery (posterior inference, kernel design, and BAL) has been introduced, we can give a more detailed comparison than the overview in Table Table 10.1. Active subspaces, introduced in Section Section 9.5, are the main tool for pushing GP surrogates beyond the moderate-dimensional regime. Table Table 9.1 extends Table Table 10.1 with the GP-specific items (LOO diagnostics, marginal-likelihood Occam, BAL).
Table 9.1:GP and DNN surrogate trade-offs after the basic GP machinery has been introduced. GPs are sample-efficient and uncertainty-aware but expensive in the number of training points; DNNs scale to much larger datasets and dimensions but need more data and separate machinery for calibrated uncertainty.
Sparse-GP via inducing points reduces to for inducing inputs Titsias, 2009Hensman et al., 2013; see the inducing-point remarkbox below.
| Criterion | Gaussian Processes | Deep Neural Networks |
|---|---|---|
| Training cost | ; exact for in the low thousands^^ | per epoch; scales to |
| Prediction cost | posterior mean, posterior variance, per test point | per forward pass; independent of |
| Gradient access | closed-form from posterior | autodiff (exact, any order) |
| Non-smooth features | Matérn- adapts well | excellent with enough data |
| High-dim. extension | active subspaces () | native |
Practical guidelines.
Choose a GP when each model evaluation is expensive (minutes to hours per solve), the effective dimensionality is moderate (, or higher with active subspaces), and uncertainty quantification on the surrogate is needed, e.g., for reporting confidence intervals on estimated parameters or for guiding further data collection via BAL.
Choose a DNN when training data is cheap to generate, the input dimension is high (), and the downstream task requires millions of fast evaluations, e.g., Monte Carlo simulation, grid search over a large parameter space, or real-time inference.
Combine both when the problem has a natural two-stage structure: use a GP with BAL to build a small, high-quality training set with uncertainty estimates, then train a DNN on the resulting dataset for fast large-scale deployment. The active subspace approach of Scheidegger & Bilionis (2019) is particularly effective in this setting, extending GP methods far beyond their naïve scaling limits.
9.4.1GP Regression in Practice¶
In code, GP regression is a one-liner once the kernel is chosen. In scikit-learn the standard pattern is to assemble a kernel as the sum of an RBF (RBF(length_scale=...)) and a noise term (WhiteKernel(noise_level=...)), pass it to GaussianProcessRegressor, call .fit(X_train, y_train), and obtain posterior mean and standard deviation from .predict(X_test, return_std=True); the kernel hyperparameters (length_scale, noise_level, output amplitude) are optimized by maximising the marginal likelihood, with n_restarts_optimizer controlling robustness to local optima. The companion notebook 02_GP_and_BAL.ipynb provides a full worked example fitting noisy observations of on .
9.4.1.1Application: GP surrogates for option pricing.¶
GPs are particularly well suited as surrogates for derivative pricing models. For example, one can train a GP on as few as 5--50 Black--Scholes option prices (evaluated at different spot prices or parameter configurations) and obtain a surrogate that accurately reproduces the pricing surface with calibrated uncertainty bands. The posterior variance immediately quantifies the interpolation uncertainty at each query point. This idea extends naturally to stochastic volatility models such as Heston, where the analytical pricing formula is expensive to evaluate. Furthermore, because GP predictions are linear in the training targets, the uncertainty of a portfolio of GP-priced instruments propagates analytically: for a linear portfolio with vector of weights and joint posterior covariance , . When the surrogate errors are independent across instruments, is diagonal with entries and the formula reduces to ; otherwise the off-diagonal cross-instrument covariances must be retained, e.g. via a multi-output GP. Either way the assessment is instant.
Figure 9.5:Inducing-point intuition. Exact GP inference conditions on all observations and uses the full kernel matrix. Sparse variational GP methods introduce inducing inputs and approximate the posterior through the low-rank structure induced by . The top panel compares the exact posterior mean and uncertainty band with a sparse approximation using pseudo-inputs; the bottom panel shows the absolute difference between the two means. In this smooth one-dimensional illustration the approximation is close, but its quality depends on , the kernel hyperparameters, and the placement of . The dominant training cost falls from to ; the variational formulation of Titsias (2009) optimizes jointly with the kernel hyperparameters.
9.5Scaling GPs to High Dimensions: Active Subspaces¶
A common criticism of GP methods is that they are limited to moderate-dimensional problems (). While this is true for naïve implementations, where the number of training points needed to cover the input space grows exponentially in , Scheidegger & Bilionis (2019) show that active subspace methods can mitigate this barrier when the target function exhibits a clear spectral gap in the gradient outer-product matrix of (9.8) below, i.e., when its variation is concentrated on a low-dimensional linear subspace of the input space. If depends comparably on all coordinates, the spectral gap is absent and the technique offers little gain; sufficient conditions are in Constantine (2015). For a textbook treatment of the active subspace framework and references to its origins, see Constantine (2015); we summarize the key ideas and their application to dynamic economic models below.
9.5.0.1Intuition: why most directions don’t matter.¶
Consider a value function in a dynamic stochastic economy with state variables. Although is formally a function of all inputs, it often responds primarily to a few linear combinations of them. For example, in a multi-country model, the value function may depend mostly on aggregate capital and a measure of inequality , rather than on each country’s capital individually. If we can identify these important directions, we can project the -dimensional input onto a much lower-dimensional subspace and fit the GP there, substantially mitigating the practical grid-based curse of dimensionality.
9.5.0.2The gradient outer product matrix.¶
The key diagnostic tool is the gradient outer product matrix Constantine, 2015. Given a function with input distribution , define:
The matrix is symmetric and positive semi-definite. Its -entry measures how much co-varies along input directions and , averaged over the input distribution. In particular:
If is consistently large across the input space, the -th diagonal entry of is large, meaning direction is important.
If two directions always change together, the corresponding off-diagonal entry is large, as they form part of the same important linear combination.
If everywhere, then direction contributes nothing to , so it is irrelevant and can be projected away.
9.5.0.3Worked toy example.¶
Take on . Then , and integrating against the uniform measure gives . The eigenvalues are and ; the first eigenvector is , the second is ; the spectral gap is infinite. The active subspace is the -axis, and is recovered exactly as with . This is the cleanest instance of the projection in (9.9) below.
9.5.0.4Eigendecomposition and the spectral gap.¶
Let be the eigendecomposition, with eigenvalues . The eigenvectors reveal the directions of maximal average variation; the eigenvalues quantify how much variation each direction captures. Each diagonal entry of is the average squared sensitivity of along that input direction, so eigenvectors of are directions of correlated sensitivity: when the top eigenvalues capture most of the trace, varies primarily along their span and is approximately constant in the perpendicular -dimensional complement. If there is a clear spectral gap, i.e., , then the first eigenvectors span the active subspace, and is well approximated by a function of the reduced coordinates alone.
Figure 9.6:Spectral decay of the active-subspace eigenvalues for a schematic example with state variables. The first three eigenvalues are orders of magnitude larger than the rest; the dashed red line marks the spectral gap after , which indicates that effectively lives on a 3-dimensional active subspace (green brace) and reduces the GP regression problem from to . The remaining nine directions form the inactive subspace (gray brace), along which is nearly constant on average.
9.5.0.5Computing the gradient.¶
In practice, the integral in (9.8) is estimated from a finite sample of gradient evaluations Constantine, 2015 (this is a one-time pre-processing cost, with --, far smaller than the surrogate training set of size ):
The gradient can be obtained via:
Automatic differentiation through the model solver (if differentiable, e.g., a DEQN or PINN).
Finite differences: evaluate at perturbed inputs per sample point. This costs model evaluations, but can be modest (typically to suffices for a reliable estimate of the leading eigenspace).
The eigendecomposition of is a standard matrix operation and is cheap relative to the model evaluations. When are i.i.d. from , almost surely as by the law of large numbers, so the eigenvectors of are consistent estimates of the population active subspace; finite-sample bias is documented in Constantine (2015).
9.5.0.6Practical workflow.¶
The full dimension-reduction pipeline consists of three steps:
Gradient sampling: Draw points and compute at each. Form the empirical estimate via (9.10).
Eigendecomposition and dimension selection: Compute . Inspect the eigenvalue decay, as in Figure Figure 9.6, and choose at the spectral gap.
GP in reduced space: Project all training inputs onto the active subspace: . Fit a standard GP on the -dimensional projected data.
When combined with BAL, the GP adaptively selects training points in the reduced space, further improving sample efficiency.
Figure 9.7:Linear active-subspace pipeline. Gradient samples identify the dominant eigenspace of the gradient outer-product matrix, all simulator inputs are projected to the reduced coordinates , and the GP/BAL loop is then run in the low-dimensional active subspace.
Figure Figure 9.7 summarizes the linear active-subspace workflow used before fitting the GP.
9.5.0.7Application to dynamic stochastic economies.¶
Scheidegger & Bilionis (2019) apply this pipeline to high-dimensional dynamic programming problems arising in neoclassical growth models. Their key findings:
Models with up to continuous state variables can be solved, far beyond the reach of grid-based methods or naïve GP implementations.
The active subspace typically reduces the effective dimension to --5, even when is in the hundreds. The value function’s dependence on the full state vector collapses onto a few aggregate quantities (e.g., mean capital, dispersion of productivity).
The state space is partitioned into clusters via Bayesian Gaussian mixture models, and a separate GP with BAL is fit within each cluster. This local approximation strategy handles non-stationarities in the value function (e.g., different curvature in high- vs. low-capital regions).
Parallel computing distributes the gradient evaluations and GP fits across multiple processors, enabling the method to scale to large-scale models on high-performance computing clusters.
9.5.0.8Anchor on the multi-sector growth benchmark.¶
In the multi-sector neoclassical growth benchmark of Scheidegger & Bilionis (2019), the active-subspace dimension collapses to even at , so the entire ASGP pipeline operates on a one-dimensional projected coordinate. On models with other configurations the active subspace can be larger; the spectral-gap test is what decides.
9.5.1Nonlinear Generalization: Deep Active Subspaces¶
The linear pipeline of the previous section assumes that the important directions are linear combinations of the input variables. That is an inductive bias: the first columns of always span a linear subspace of , so if the response actually varies along a curved low-dimensional manifold (a ridge, a product of two linear features, a radial coordinate, a hidden regime indicator), the linear projection has to carry enough directions to cover the whole manifold, not the manifold itself. Concretely, if is a radial function of two linear features, the gradient spans a two-dimensional space when averaged over , so linear AS returns ; yet the intrinsic “interesting” coordinate is the scalar aggregate , which is one-dimensional. Tripathy & Bilionis (2018) remove the linearity bias by replacing the linear projection with a learned nonlinear encoder and thereby recover the one-dimensional structure.
9.5.1.1The deep active-subspace ansatz.¶
Tripathy and Bilionis parametrize the surrogate as a composition of two small neural networks,
where is a multilayer perceptron (MLP) that plays the role of the projection matrix in the linear case, and is a second MLP that plays the role of the GP link. Setting and taking to be a polynomial recovers the linear active-subspace surrogate (9.9), so (9.11) generalizes the linear-AS ansatz rather than the gradient covariance matrix (9.8) itself. The two networks are trained jointly to minimize the residual on an input-output sample, so that the bottleneck adapts to the specific response surface rather than being fixed in advance by the spectrum of .
9.5.1.2Architecture choices.¶
Three design choices make (9.11) trainable with a few hundreds of samples:
Exponentially decaying encoder widths Tripathy & Bilionis, 2018. For an encoder with layers mapping to , choose widths
so that the bottleneck closes smoothly from to without a brittle hyperparameter choice. For this gives widths ; for , widths -- a recipe rather than a search.
Swish activation Tripathy & Bilionis, 2018,
which is smooth everywhere (unlike ReLU) and non-saturating (unlike ); smoothness matters because we will want to differentiate through for sensitivity analysis and because the elastic-net penalty below otherwise has to fight the sharp corners of ReLU.
Elastic-net regularization on every weight matrix Tripathy & Bilionis, 2018. Writing for all encoder and link parameters, the training loss is
with small ; the term encourages sparse weights and input usage, the term controls the overall smoothness of and prevents the loss landscape from becoming pathological as shrinks.
Crucially, no gradient samples of are required: is learned from the input-output pairs alone. The orthogonality constraint that is implicit in the linear case becomes unnecessary, because the learned encoder is free to pick any smooth low-dimensional parameterization of the active manifold.
9.5.1.3Choosing the latent dimension .¶
The spectral gap of is no longer available -- the encoder is nonlinear -- so is chosen by a validation-MSE elbow: hold out an independent fraction of the sample, train a small family of models with , and pick the smallest beyond which held-out error no longer drops significantly. An operational rule of thumb is to stop at the first for which the MSE improvement from to is less than a factor of two: smaller gains are typically driven by optimization slack, not by new latent structure. On curved problems this elbow lies strictly below the linear-AS spectral gap: the deep encoder collapses two linear features into a single nonlinear aggregate (notebook 09_Deep_Active_Subspace_Ridge gives a reproducible instance in ). On nearly-linear problems the two criteria agree qualitatively, and at small training-set sizes a polynomial link on top of a two-dimensional linear AS can in fact be more data-efficient than the deep encoder (notebook 10_Deep_AS_vs_Linear_AS_Borehole, the canonical borehole benchmark with and ). Figure Figure 9.8 contrasts the elbow rule with the linear-AS spectral gap on the radial-ridge target.
Figure 9.8:Stylized comparison of the two selection criteria for the radial-ridge target in (see notebook 09). The linear-AS eigenvalue spectrum has two dominant directions, so the spectral-gap criterion picks (right green dashed line). The deep-AS validation MSE, by contrast, is already at its plateau at (left green dashed line): the learned encoder represents the nonlinear aggregate as a scalar. The curves are stylized; the orders of magnitude track the notebook (linear-AS eigenvalues for then a sharp drop; deep-AS validation MSE at and roughly flat thereafter), and the elbow-at- versus spectral-gap-at- contrast is reproduced.
9.5.1.4Training recipe.¶
A practical recipe that reproduces the experiments in notebooks 09 and 10:
Sample input-output pairs ; split into train and validation sets. Standardize inputs to unit variance and center outputs.
For each candidate : build with widths (9.12) and with two hidden layers (16--32 units); train on loss (9.14) with Adam (), a cosine learning-rate schedule over 103-- epochs, and .
Record the validation MSE, apply the elbow rule, and deploy with the chosen .
Sample-budget rule of thumb: to find the bottleneck, inflated to for a deployment surrogate. Two post-training sanity checks are worth doing: (i) the validation curve should be monotone-then-flat in ; (ii) a scatter of against the top linear-AS coordinate reveals whether the encoder has actually gone nonlinear (a non-monotone relation is the fingerprint).
Figure 9.9:Deep active-subspace pipeline. Input--output pairs are drawn directly from the simulator (no gradient samples needed); a nonlinear encoder compresses the high-dimensional input into a -dimensional latent code, a small link network maps the latent code to the response, and an elastic-net / validation-MSE elbow chooses . The trained composition is the deployed surrogate. Compared with the linear active-subspace pipeline (Figure Figure 9.7), the encoder + link boxes replace the eigendecomposition + linear projection, the elbow box replaces the spectral-gap search, and the gradient-sampling step disappears entirely.
Figure Figure 9.9 should be compared with the linear pipeline in Figure Figure 9.7: the two blue encoder / link boxes replace “eigendecomposition + project”, the “elastic-net + elbow” box replaces “find spectral gap”, and the gradient-sampling step is gone entirely. The economic pay-off is the same, a cheap surrogate in variables where the original has , but the modeling assumption is weaker: curved active manifolds are now admissible.
9.5.1.5When is the extra machinery worth it?¶
Deep AS pays off when (i) no gradient samples are available (e.g., black-box simulators, noisy observations from a lab experiment, or calibration targets returned by a proprietary solver), (ii) the spectral gap of is ambiguous or the response surface genuinely depends on nonlinear aggregates of the inputs (ridges, radial coordinates, thresholded features, piecewise regimes), or (iii) the input dimension is large () and a linear projection is too restrictive to capture the active manifold. When none of these conditions apply, linear AS plus a polynomial or a GP link is usually more data-efficient and should be fit first as a baseline. The borehole experiment in notebook 10 is the honest diagnostic: on a function this close to a ridge, the two curves cross, and a cubic polynomial on two linear features beats the deep encoder at all . Deep AS’s advantage materializes precisely at , where a single linear feature cannot span the active direction. This perspective also connects naturally to deep kernel learning (Section Section 9.7), which composes a learned feature map with a GP head; deep AS is the same idea for the feature map, with an MLP link in place of the GP.
9.5.1.6Applications in economics and finance.¶
The deep-AS architecture is particularly attractive in settings where the state variable is high-dimensional but the economic mechanism acts through a few aggregate quantities that are not linear in the state. Examples include (i) heterogeneous-agent models whose cross-sectional distribution of wealth enters the equilibrium law of motion only through a few moments (mean, dispersion, tail mass), the Krusell-Smith aggregation logic of Chapter Chapter 6, where the map from the raw distribution to those moments is a learned, nonlinear encoder; (ii) multi-region climate-economy integrated assessment models with hundreds of regional capital stocks, in which damages and optimal carbon taxes depend on nonlinear aggregates of the underlying state (total radiative forcing, regional inequality indices); and (iii) dynamic games and mean-field games in which the relevant action depends on a curved functional of the opponent distribution. In each case the original space is too large for a direct GP and the linear active subspace is too rigid, while the deep encoder provides a trainable compromise. Bilionis & Zabaras (2016) and Tripathy & Bilionis (2018) provide the general UQ and deep-active-subspace methodology; for integrated assessment models specifically, Friedl et al. (2023) is the economics-side reference used in this course.
9.6Dynamic Programming with Gaussian Processes¶
Returning to the second oracle announced at the start of this chapter and developed formally in Section 9.6.1 below, we now embed the GP and active-subspace machinery developed above into a value function iteration (VFI) algorithm, with the Bellman operator playing the role of the expensive label generator. The acronym ASGP used in the section titles and figure captions below stands for Active-Subspace Gaussian Process: the dimensionality reducer of Section 9.5 stacked under the GP of Section 9.2.
The idea of representing the value function as a GP inside a DP recursion was introduced under the name Gaussian process dynamic programming (GPDP) by Deisenroth et al. (2009), who used it for continuous-state, continuous-action optimal control problems and combined it with a variance-based active selection of support points. Closely related work Engel et al., 2005 embeds GPs into temporal-difference learning, replacing tabular value functions with a GP posterior. These ideas later inspired model-based policy search methods such as PILCO Deisenroth & Rasmussen, 2011, which propagate GP uncertainty through long horizons. In economics, Scheidegger & Bilionis (2019) show that pairing this paradigm with active subspaces and Bayesian Gaussian mixture models for the ergodic set scales the framework to economies with up to 500 continuous state variables; Renner & Scheidegger (2018) apply it to dynamic incentive problems, Gaegauf et al. (2023) to dynamic portfolio choice, and Chen et al. (2025) to dynamic private asset allocation. The remainder of this section presents the algorithm in this combined form.
9.6.1Why GPs for DP: a Supervised-Learning View of the Bellman Operator¶
Before stating the algorithm, it helps to see VFI through a supervised-learning lens. At iteration , given an incumbent value function , we generate a training set
and fit a regressor to it. The label is not free. Each evaluation of the Bellman operator at a state requires solving a constrained nonlinear program over controls subject to the law of motion and any feasibility / market-clearing constraints; quadrature over is taken inside. In textbook problems each oracle call costs 10-2--100 seconds, and in higher-dimensional models with adjustment costs, occasionally binding constraints, or aggregator nonlinearities, it can run into minutes. Because the calls are independent across , the design is embarrassingly parallel Scheidegger & Bilionis, 2019, but each individual label remains expensive.
This is exactly the regime where Gaussian processes shine. Three properties make them the natural surrogate class:
Sample efficiency under an expensive oracle. The marginal-likelihood Occam’s razor of Section 9.2 delivers calibrated fits at --103 design points, well below the regime in which deep-network surrogates start to dominate (Table Table 9.3).
Built-in uncertainty quantification. The GP posterior variance tells us, at every state, how much the current surrogate trusts its own prediction. This is the input that turns a passive interpolant into an adaptive one (Section 9.6.6).
Cheap held-out diagnostics. The leave-one-out predictive error is available in closed form from the same Cholesky factor used for posterior inference (Section 9.6.5), so we can monitor surrogate health every iteration without spending oracle calls on a held-out split.
The same logic applies, with a different oracle, in the structural estimation chapter: Chapter Chapter 10 stacks a GP over the moment map where each label is a forward simulation plus moment computation under a candidate parameter, again expensive to evaluate and cheap to store. Both settings are instances of one pattern: supervised regression on the output of a costly numerical procedure. The next subsection writes down the formal DP problem; the subsequent subsections develop the GP-based interpolant and the two ingredients (LOO and active learning) that make it sample-efficient at modest design size.
9.6.2The Dynamic Programming Problem¶
Consider an infinite-horizon, discrete-time stochastic optimal decision problem. A representative agent chooses a sequence of controls to maximize the expected discounted sum of returns:
subject to the law of motion , where is the state, is the control, is the per-period return function, and is the discount factor.
By the principle of optimality Bellman, 1957, the infinite-dimensional problem (9.16) reduces to the Bellman equation:
where the expectation is over the stochastic transition. The Bellman operator maps value functions to value functions:
Under standard regularity conditions (bounded returns, , monotonicity, discounting), is a contraction mapping on the Banach space of bounded continuous functions with sup-norm, with modulus . By the Banach fixed-point theorem (Appendix Appendix D), admits a unique fixed point , and iterating from any initial guess converges geometrically: . The classical references in economics are Stokey et al. (1989) [Chs. 3--4] for the formal contraction-and-fixed-point theory of the Bellman operator and Judd (1998) [Ch. 12] for the numerical implementation in continuous-state settings; Ljungqvist & Sargent (2018) [Chs. 3--4] and Sargent & Stachurski (2026) provide modern macroeconomic treatments. In the operations-research and optimal-control literature, Bertsekas (2000) is the canonical reference, with extensive coverage of approximate dynamic programming. The contraction modulus applies to the exact Bellman operator; convergence of the GP-fitted iterates additionally requires controlling the per-step interpolation error of the surrogate, otherwise the approximate operator can fail to contract globally even though the exact one does. This is the standard textbook VFI loop: guess a value function, apply the Bellman operator, interpolate the updated values, and repeat until convergence. In the present chapter, the only change is the interpolant: a GP replaces the grid or polynomial basis when the state space is irregular or moderately high-dimensional. For a comprehensive treatment of dynamic programming in economics, see also the open-source QuantEcon lectures.[1]
9.6.2.1The computational challenge.¶
At every VFI iteration, we must approximate as a function of the full state vector . Traditional approaches (finite grids, Smolyak sparse grids, tensor-product polynomial bases) suffer from the curse of dimensionality: the number of grid points grows exponentially in , and they require hypercubic state-space geometries. For , these methods become infeasible.
9.6.3The Stochastic Optimal Growth Model¶
The workhorse test case for GP-based dynamic programming is the multi-sector stochastic optimal growth model. Assume sectors, each with a capital stock , so the state is . A representative household chooses consumption , labor supply , and investment to maximize:
subject to the capital law of motion , a sector-by-sector resource constraint with convex adjustment cost , and Cobb--Douglas production . Productivity shocks follow a stationary process and the dimension can be scaled from 1 (the textbook Brock--Mirman model of Chapter Chapter 2) to 500 without changing the algorithmic structure.
9.6.4GP-Based Value Function Iteration (ASGP)¶
The key idea, common to Deisenroth et al. (2009) in the control literature and Scheidegger & Bilionis (2019) in the economics literature, is to use a Gaussian process as the interpolation scheme inside VFI, replacing grid-based methods entirely. At each VFI step :
Generate training inputs .
Evaluate the Bellman operator at each training point: .
Learn a GP (or ASGP) surrogate from the training data .
Set (the GP posterior mean).
Compute the convergence error , where is a normalizing value-function range.
If , stop; otherwise continue.
9.6.4.1Advantages over grid-based methods.¶
This GP-VFI approach offers several structural advantages:
Arbitrary geometries: GPs require no tensor-product structure, so training points can be placed anywhere in the state space, including on irregularly shaped ergodic sets.
Adaptive training: Points where the Bellman operator fails to converge (e.g., near constraints) can simply be excluded and retried later; adding or removing points is trivial.
Built-in uncertainty quantification: The GP posterior variance provides interpolation uncertainty at every state point, at every iteration, “free” UQ.
Active subspace integration: When , the GP operates on the projected inputs discovered via the active subspace pipeline (Section Section 9.5), reducing the effective dimensionality from hundreds to a handful.
9.6.4.2Parallelization.¶
The most expensive part of the algorithm, evaluating the Bellman operator at training points, is embarrassingly parallel: each evaluation is independent. In the MPI implementation of Scheidegger & Bilionis (2019), the current value function surrogate is broadcast to all workers, each worker evaluates the Bellman operator at points, and the results are gathered at the master for GP fitting. Communication cost is negligible relative to the Bellman evaluations.
9.6.5Leave-One-Out Error: a Held-out Diagnostic for Free¶
How do we know that the GP surrogate at iteration is good enough to take another Bellman step? The marginal-likelihood objective of Section 9.2 fits the kernel, but it does not, on its own, certify pointwise predictive accuracy on the design. A held-out validation split would, but every held-out point is one fewer expensive Bellman label going into the GP.
The standard escape route in GP regression is the leave-one-out (LOO) predictive error, and it has the pleasant feature that for a Gaussian process it admits a closed form using the same Cholesky factor already computed for the posterior Rasmussen & Williams, 2005:
where and denote the posterior mean and variance after removing the -th observation, and (for centered outputs, ). Since is recovered from the Cholesky factor of in once the factorisation has been done, computing the full -vector of LOO residuals is essentially free relative to the already paid for posterior inference.
9.6.5.1What the LOO RMSE tells us.¶
Tracking
across VFI iterations is a cheap surrogate-health metric that is independent of the Bellman residual:
A flat-then-rising LOO curve at the same design size signals kernel mis-specification (length scale collapsing, noise variance hitting a bound) and tells us to revisit the kernel choice or hyperparameter bounds before adding more design points.
A high LOO RMSE at small that decays as the design grows is the expected behaviour and tells us that the surrogate simply needs more labels.
A small LOO RMSE coexisting with a large Bellman residual points the finger at the operator, not the surrogate: the iterate may be far from the fixed point even though the GP fits the current well.
The notebook 04_GP_Value_Function_Iteration.ipynb computes (9.20) via scipy.linalg.cho_solve (function gp_loo_rmse) and reports it alongside the Bellman residual at every VFI iteration, separating these two failure modes. The same diagnostic reappears in Section 10.1.4 for the GP layer over the SMM moment map.
9.6.6Active Learning Inside the VFI Loop¶
The Bayesian active-learning machinery of Section 9.3 carries over almost verbatim once the VFI loop is in place, but with one important adjustment: the goal is now uniform interpolation accuracy of the value function on the relevant state-space region, not maximisation of a payoff or minimisation of a loss. The right acquisition function is therefore pure exploration, the GP posterior standard deviation, rather than a UCB or expected-improvement criterion that trades off exploitation and exploration:
A practical implementation, used in notebook 04_GP_Value_Function_Iteration.ipynb, runs the VFI iterations with a frozen design for a few steps, then enriches the design every iterations:
Evaluate on a dense candidate set (a Latin-hypercube draw over the current state-space region).
Pick the top- candidates by posterior standard deviation, subject to a minimum-spacing constraint against existing design points to avoid clustering.
Evaluate the Bellman operator at the new points (one expensive oracle call each, in parallel) and append them to .
Refit the GP and continue iterating.
9.6.6.1Why pure exploration here.¶
A UCB-style acquisition would bias the design toward states with high value, which is not what we want when the surrogate is a building block of an iteration. We want the GP posterior to be uniformly tight wherever the Bellman operator might be evaluated, so that the contraction modulus of the approximate operator stays close to . This is structurally different from the optimisation setting of Bayesian optimisation, where exploitation is a feature.
9.6.6.2Empirical impact.¶
The companion notebook compares a same-budget fixed Latin-hypercube design with an active design inside the one-dimensional GP-VFI loop. Both designs use Bellman labels; the active design starts from a small initial set and adds states by maximising the GP posterior standard deviation (9.22) subject to a spacing rule. At the same final number of labels, the active design lowers posterior uncertainty and achieves a comparable or smaller dense-grid Bellman residual (Figure Figure 9.10). The figure is one-dimensional by design: the goal is to show active enrichment inside a genuine Bellman iteration, not to use a separable interpolation toy as a proxy for multidimensional dynamic programming.

Figure 9.10:Same-budget active enrichment inside one-dimensional GP value-function iteration. The left panel compares the GP posterior means from a fixed Latin-hypercube design and an active design against a reference GP-VFI solution. The middle panel shows the posterior standard deviation and the states added by the active rule (9.22), marked as triangles on the horizontal axis. The right panel reports the dense-grid Bellman residual. Unlike the previously used two-dimensional separable interpolation benchmark, every plotted training value here is generated by a Bellman maximization. Generated by notebook lecture_14_04_GP_Value_Function_Iteration.ipynb.
9.6.7Results: From One to 500 Dimensions¶
The companion notebook deliberately stops at the one-dimensional Bellman problem, where every numerical object can be inspected directly. The high-dimensional claims below come from the ASGP implementation of Scheidegger & Bilionis (2019), where the GP operates on an active subspace rather than on the full tensor-product state space; we report their findings as a literature summary, not as something the notebook itself demonstrates.
Scheidegger & Bilionis (2019) apply the ASGP-VFI algorithm to the stochastic optimal growth model (9.19) across a range of dimensions, from (the textbook Brock--Mirman case) to continuous state variables. The key findings are:
Convergence is dimension-independent in the active subspace: all models converge to a normalized error below 10-4 within approximately 70 VFI iterations regardless of , where the iteration count is dimension-independent in the -dimensional active subspace on which the GP actually operates rather than in the full ambient .
Low-dimensional structure: the active subspace dimension is in all cases tested, so the value function depends on a single linear combination of the capital stocks, confirming that the high-dimensional problem has intrinsic low-dimensional structure.
Sub-exponential scaling: CPU time grows sub-exponentially with (concave on a log scale when parallelized across compute nodes); on the benchmarks reported in Scheidegger & Bilionis (2019), is solved at sub-exponential cost in when distributed across a compute cluster. This avoids the explicit grid-based curse but does not eliminate all high-dimensional sample/optimization costs.
Beyond the reach of grids: grid-based methods such as Smolyak sparse grids cannot handle , making ASGP one demonstrated grid-free approach for models at this scale; neural residual methods such as DEQNs are complementary alternatives when the equilibrium conditions are easier to express directly.
9.6.8Uncertainty Quantification and Ergodic Sets¶
9.6.8.1Free UQ from the GP posterior.¶
Because the value function at each VFI iteration is a GP, the posterior variance provides a built-in measure of approximation uncertainty. This gives pointwise credible bands for the interpolated value function essentially for free. Policy uncertainty is not automatic in the same sense: it must be propagated through the Bellman maximization, for example by evaluating policies under posterior draws or local approximations to the GP posterior.
9.6.8.2Parameter uncertainty propagation.¶
Uncertain model parameters can be treated as additional pseudo-states. For example, extending the state to where is the risk aversion parameter allows solving the model once on the extended state space and then extracting univariate effects and global sensitivity indices in a single computation, avoiding the traditional approach of re-solving the model for each parameter value. Harenberg et al. (2019) give a general introduction to uncertainty quantification for economic models, covering univariate-effect plots and Sobol’ sensitivity indices.
9.6.8.3Learning ergodic sets.¶
Many economic models have irregularly shaped ergodic sets (ellipsoids or manifolds, not hypercubes). Scheidegger & Bilionis (2019) propose learning the ergodic distribution via Bayesian Gaussian mixture models: (i) solve the model on a large initial domain; (ii) simulate the economy forward to generate capital paths ; (iii) fit a mixture of Gaussians to the simulated paths; (iv) re-solve on the ergodic set by sampling training points from instead of the full hypercube. GPs handle this naturally because they require no grid structure.
9.6.9Comparison: GPs vs. DEQNs for Solving Dynamic Models¶
Both GPs (this chapter) and DEQNs (Chapters Chapter 2--Chapter 5) solve dynamic stochastic models, but with different trade-offs (Table Table 9.2):
Table 9.2:GP/ASGP and DEQN solvers for dynamic models. The table distinguishes exact fixed-point theory from the numerical approximation actually used: GP-VFI inherits the Bellman contraction only up to interpolation error, while DEQNs are judged by residual and simulation diagnostics.
| Criterion | GP / ASGP | DEQNs |
|---|---|---|
| Solution method | Value function iteration | Euler equation residuals |
| Dimensionality | Up to 500 (with AS) | 1000 feasible |
| UQ built-in | Yes (GP posterior variance) | No (needs extra work) |
| Hardware | CPU clusters (MPI) | GPUs (TensorFlow/PyTorch) |
| Irregular domains | Yes (grid-free) | Yes (mesh-free) |
| Sensitivity analysis | Cheap after pseudo-state augmentation | Requires pseudo-states or re-training |
| Convergence diagnostics | Exact Bellman operator is a contraction; GP interpolation error must be controlled | Euler residuals and simulation tests; no generic global proof |
When to use which: GPs when the effective dimension is moderate (, or a few hundred only when active-subspace structure is strong) and uncertainty quantification or sensitivity analysis is required; DEQNs when is very large, GPU hardware is available, or the model involves complicated market-clearing conditions that are more naturally expressed as Euler equation residuals than as Bellman maximization.
9.7Deep Kernel Learning¶
Standard GP kernels such as the RBF or Matérn operate on raw input features: the covariance depends on , which may be a poor measure of similarity when the inputs are high-dimensional or when the function’s structure depends on complex nonlinear interactions among variables. Deep Kernel Learning (DKL) Wilson et al., 2016 addresses this limitation by combining the representation-learning power of deep neural networks with the probabilistic framework of GPs.
9.7.0.1The DKL architecture.¶
A DKL model consists of two components:
A feature extractor , typically a multi-layer perceptron that maps the raw input to a learned representation of (usually much lower) dimension .
A GP layer that places a GP prior on the function , with a standard base kernel (e.g., RBF or Matérn) operating in the learned feature space.
The deep kernel is thus:
Unlike a standard kernel that computes distance in the input space, the DKL kernel computes distance in a learned feature space. If the neural network learns to map functionally similar inputs close together, the GP can exploit this structure for better predictions and more calibrated uncertainty estimates.
9.7.0.2Joint training.¶
The parameters of both the neural network () and the GP hyperparameters ( of ) are optimized jointly by maximizing the GP marginal likelihood:
where is the matrix of transformed features. This end-to-end training procedure automatically learns features that are useful for the GP, without requiring manual feature engineering. In practice, DKL is implemented via GPyTorch Gardner et al., 2018, which provides efficient GPU-accelerated GP inference and integrates seamlessly with PyTorch for the neural network component.
9.7.0.3When DKL helps.¶
DKL is most beneficial when:
The input space is high-dimensional but the function has low-dimensional structure that is nonlinearly embedded (active subspaces find linear structure; DKL can find nonlinear features).
Sufficient training data is available to train the feature extractor without overfitting (DKL has more parameters than a standard GP).
Uncertainty quantification is important, but a standard GP kernel is insufficiently expressive to capture the true function’s covariance structure.
The trade-off relative to a standard GP is clear: DKL offers greater expressiveness at the cost of more parameters and the risk of overfitting with very small datasets. For the moderate-data regimes typical of economic surrogate models (--1000), DKL can offer significant improvements over standard kernels, particularly when the target function has complex multi-scale behavior. Chen et al. (2025) apply learned-feature-map GP architectures in a dynamic model of private asset allocation, where the feature map captures the complex nonlinear interactions between illiquidity, portfolio composition, and optimal rebalancing.
9.7.0.4Illustrative examples.¶
Two simple examples highlight when DKL provides a qualitative advantage over standard kernels:
Step functions. Consider approximating a 1D function with a sharp discontinuity. A standard GP with an RBF kernel necessarily oversmooths near the jump and yields poorly calibrated uncertainty bands. A DKL model, by contrast, can learn a feature map that “compresses” the input near the discontinuity, effectively sharpening the GP’s resolution where it matters most. This is directly relevant to economic applications with occasionally binding constraints, where policy functions exhibit kinks or jumps.
Anisotropic boundaries in 2D. Standard stationary kernels (RBF, Matérn) are isotropic: they measure distance with circular level sets. When the target function has a discontinuity along a diagonal or curved boundary, common in portfolio problems with no-trade regions or in models with regime-dependent policies, the isotropic kernel cannot adapt. DKL learns a nonlinear coordinate transformation that aligns the kernel’s smoothness assumptions with the function’s actual structure, capturing diagonal and curved boundaries that would require an impractical number of training points with a standard kernel.
9.8GPs Among Their Bayesian Cousins¶
Gaussian processes are the most analytically transparent way to attach uncertainty to a non-parametric regressor, but they are not the only one. For completeness, this section briefly situates the GP machinery against two neural-network-based alternatives that come up frequently in modern uncertainty-aware deep learning.
9.8.0.1Monte-Carlo dropout.¶
Gal & Ghahramani (2016) show that a deep network trained with dropout and evaluated with dropout still active can be interpreted as approximate variational inference over a particular Bayesian neural network. Predictive uncertainty is obtained by averaging stochastic forward passes; the cost is one extra forward pass per sample. Calibration is rougher than a GP’s, but the method requires no architectural change and scales to deep nets and large .
9.8.0.2Deep ensembles.¶
Lakshminarayanan et al. (2017) train independent neural networks with different random seeds and combine them into a Gaussian-mixture predictor. Empirically this is one of the most robust uncertainty-quantification recipes available, often beating MC dropout and approaching the calibration of GPs, at times the training cost.
Table 9.3:Three uncertainty-quantification recipes compared on the dimensions that drive method choice in economic surrogate work. This script uses GPs in Chapter Chapter 9 and Chapter Chapter 11 because the typical regime (, expensive simulator) plays to their strengths; readers operating in larger-data regimes should consider MC dropout or deep ensembles before resorting to a sparse GP.
| Gaussian process | MC dropout | Deep ensembles | |
|---|---|---|---|
| Calibration | exact under model | approximate | strong empirically |
| Training cost | one network | one network | |
| Inference cost | forward passes | forward passes | |
| Sample efficiency | best at small | needs much more data | needs much more data |
| Best when | , low | cheap UQ on existing nets | willing to pay for top calibration |
| Reference | Rasmussen & Williams (2005) | Gal & Ghahramani (2016) | Lakshminarayanan et al. (2017) |
9.8.0.3A decision rule for practice.¶
In our experience the right method follows from the application: (i) plain GPs for moderate (--20) with a smooth target and an expensive simulator, when calibrated uncertainty is the goal; (ii) deep kernels (Wilson & al., (2016)) when the input geometry is non-trivial (regime switches, manifold structure, image-like inputs); (iii) deep ensembles or MC dropout for high- regression where calibrated uncertainty is desirable but exact GP inference is infeasible; (iv) sparse GPs (Titsias (2009) Hensman et al. (2013)) for when the target stays smooth. The summary frame in the companion deck (“Toolbox: When to Use What”) gives the same decomposition visually.
9.9Further Reading¶
Rasmussen & Williams (2005), the standard GP textbook.
Constantine (2015), the active-subspaces monograph.
Renner & Scheidegger (2018) Scheidegger & Bilionis (2019), GP+BAL methodology and applications in economics.
Wilson et al. (2016), deep kernel learning.
Titsias (2009) Hensman et al. (2013), sparse-GP scaling.
9.10Exercises¶
Worked solutions and guidance for these exercises appear in Appendix Appendix F.
- Rasmussen, C. E., & Williams, C. K. I. (2005). Gaussian Processes for Machine Learning (Adaptive Computation and Machine Learning). The MIT Press.
- MacKay, D. J. C. (1992). Information-Based Objective Functions for Active Data Selection. Neural Computation, 4(4), 590–604.
- Krause, A., Singh, A., & Guestrin, C. (2008). Near-optimal sensor placements in Gaussian processes: Theory, efficient algorithms and empirical studies. Journal of Machine Learning Research, 9, 235–284.
- Deisenroth, M. P., Rasmussen, C. E., & Peters, J. (2009). Gaussian process dynamic programming. Neurocomputing, 72(7), 1508–1524.
- Engel, Y., Mannor, S., & Meir, R. (2005). Reinforcement Learning with Gaussian Processes. Proceedings of the 22nd International Conference on Machine Learning.
- Scheidegger, S., & Bilionis, I. (2019). Machine learning for high-dimensional dynamic stochastic economies. Journal of Computational Science, 33, 68–82. https://doi.org/10.1016/j.jocs.2019.03.004
- Renner, P., & Scheidegger, S. (2018). Machine learning for dynamic incentive problems. 10.2139/ssrn.3282487
- Friedl, A., Kübler, F., Scheidegger, S., & Usui, T. (2023). Deep Uncertainty Quantification: With an Application to Integrated Assessment Models.
- Titsias, M. K. (2009). Variational Learning of Inducing Variables in Sparse Gaussian Processes. Proceedings of the 12th International Conference on Artificial Intelligence and Statistics (AISTATS).
- Hensman, J., Fusi, N., & Lawrence, N. D. (2013). Gaussian Processes for Big Data. Proceedings of the 29th Conference on Uncertainty in Artificial Intelligence (UAI).
- Srinivas, N., Krause, A., Kakade, S., & Seeger, M. (2010). Gaussian Process Optimization in the Bandit Setting: No Regret and Experimental Design. Proceedings of the 27th International Conference on Machine Learning, 1015–1022.
- Constantine, P. G. (2015). Active Subspaces: Emerging Ideas for Dimension Reduction in Parameter Studies. SIAM.
- Tripathy, R. K., & Bilionis, I. (2018). Deep UQ: Learning Deep Neural Network Surrogate Models for High Dimensional Uncertainty Quantification. Journal of Computational Physics, 375, 565–588.
- Bilionis, I., & Zabaras, N. (2016). Bayesian uncertainty propagation using Gaussian processes. In Handbook of Uncertainty Quantification (pp. 1–45). Springer International Publishing. 10.1007/978-3-319-11259-6_16-1
- Deisenroth, M. P., & Rasmussen, C. E. (2011). PILCO: A Model-Based and Data-Efficient Approach to Policy Search. Proceedings of the 28th International Conference on Machine Learning.