Gaussian process regression (Kriging)
Kriging is a method to build an approximation of a function from a set of evaluations of the function at a finite set of points. The method originates from the domain of geostatistics and is now widely used in the domain of spatial analysis and computer experiments. The technique is also known as Gaussian process regression, Kolmogorov Wiener prediction, or Best Linear Unbiased Prediction.

Kriging is a method to build an approximation of a function from a set of evaluations of the function at a finite set of points. The method originates from the domain of geostatistics and is now widely used in the domain of spatial analysis and computer experiments. The technique is also known as Gaussian process regressionKolmogorov Wiener prediction, orBest Linear Unbiased Prediction.

Example of one-dimensional data interpolation by kriging, with confidence intervals. Squares indicate the location of the data. The kriging interpolation is in red. The confidence intervals are represented by gray areas.

The theory behind interpolating or extrapolating by kriging was developed by the French mathematicianGeorges Matheron based on the Master's thesis of Danie G. Krige, the pioneering plotter of distance-weighted average gold grades at the Witwatersrand reef complex in South Africa. The English verb is to krige and the most common noun is kriging; both are often pronounced with a hard "g", following the pronunciation of the name "Krige".

Contents

  [hide
  • 1 Main principles
    • 1.1 Related terms and techniques
    • 1.2 Geostatistical estimator
    • 1.3 Linear estimation
  • 2 Methods
    • 2.1 Ordinary kriging
      • 2.1.1 Kriging system
    • 2.2 Simple kriging
      • 2.2.1 Kriging system
      • 2.2.2 Estimation
    • 2.3 Properties
  • 3 Applications
    • 3.1 Design and analysis of computer experiments
  • 4 See also
  • 5 References
    • 5.1 Books
    • 5.2 Historical references
    • 5.3 Software related to kriging

Main principles[edit]

Related terms and techniques[edit]

The basic idea of kriging to predict the value of a function at a given point by computing a weighted average of the known values of the function in the neighborhood of the point. The method is mathematically closely related to regression analysis. Both theories derive a best linear unbiased estimator, based on assumptions on covariances, make use of Gauss-Markov theorem to prove independence of the estimate and error, and make use of very similar formulae. They are nevertheless, useful in different frameworks: kriging is made for estimation of a single realization of a random field, while regression models are based on multiple observations of a multivariate dataset.

The kriging estimation may also be seen as a spline in a reproducing kernel Hilbert space, with reproducing kernel given by the covariance function.[1] The difference with the classical kriging approach is provided by the interpretation: while the spline is motivated by a minimum norm interpolation based on a Hilbert space structure, kriging is motivated by an expected squared prediction error based on a stochastic model.

Kriging with polynomial trend surfaces is mathematically identical to generalized least squares polynomial curve fitting.

Kriging can also be understood as a form of Bayesian inference.[2] Kriging starts with a prior distribution over functions. This prior takes the form of a Gaussian process: N samples from a function will be normally distributed, where the covariance between any two samples is the covariance function (or kernel) of the Gaussian process evaluated at the spatial location of two points. A set of values is then observed, each value associated with a spatial location. Now, a new value can be predicted at any new spatial location, by combining the Gaussian prior with a Gaussian likelihood function for each of the observed values. The resulting posterior distribution is also Gaussian, with a mean and covariance that can be simply computed from the observed values, their variance, and the kernel matrix derived from the prior.

Geostatistical estimator[edit]

In geostatistical models, sampled data is interpreted as a result of a random process. The fact that this models incorporate uncertainty in its conceptualization doesn't mean that the phenomenon - the forest, the aquifer, the mineral deposit - has resulted from a random process, but solely allows to build a methodological basis for the spatial inference of quantities in unobserved locations and to the quantification of the uncertainty associated with the estimator.

stochastic process is simply, in the context of this model, a way to approach the set of data collected from the samples. The first step in geostatistical modulation is the creation of a random process that best describes the set of experimental observed data.[3]

A value spatially located at x_1 (generic denomination of a set of geographic coordinates) is interpreted as a realization z(x_1) of the random variable Z(x_1). In the space A, where the set of samples is dispersed, exists N realizations of the random variables Z(x_1), Z(x_2), \cdots, Z(x_N), correlated between themselves.

The set of random variables, constitutes a random function of which only one realization is known z(x_i) - the set of experimental data. With only one realization of each random variable it's theoretically impossible to determine any statistical parameter of the individual variables or the function.

The proposed solution in the geostatistical formalism consists in assuming various degrees of stationarity in the random function, in order to make possible the inference of some statistic values.[4]

For instance, if a workgroup of scientists assumes appropriate, based on the homogeneity of samples in area A where the variable is distributed, the hypothesis that the first moment is stationary (i.e. all random variables have the same mean), than, they are implying that the mean can be estimated by the arithmetic mean of sampled values. Judging an hypothesis like this as appropriate is the same as considering that sample values are sufficiently homogeneous to validate that representativity.

The hypothesis of stationarity related to the second moment is defined in the following way: the correlation between two random variables solely depends on the spatial distance that separates them and is independent of its location:

C(Z(x_1),Z(x_2)) = C(Z(x_i),Z(x_i+\mathbf{h})) = C(\mathbf{h})
\gamma(Z(x_1),Z(x_2)) = \gamma(Z(x_i),Z(x_i+\mathbf{h})) = \gamma(\mathbf{h})

where \mathbf{h} = (x_1,x_2) = (x_i,x_i+\mathbf{h})

This hypothesis allows to infer those two measures - the variogram and the covariogram - based on the N samples:

\gamma(\mathbf{h})=\frac{1}{2N(\mathbf{h})}\sum^{N(\mathbf{h})}_{i=1}\left(Z(x_i)-Z(x_i+\mathbf{h})\right)^2
C(\mathbf{h})=\frac{1}{N(\mathbf{h})}\sum^{N(\mathbf{h})}_{i=1}\left(Z(x_i)Z(x_i+\mathbf{h})\right)-m(x_i)m(x_i+\mathbf{h})

where m(x_i)=\frac{1}{N(\mathbf{h})}\sum^{N(\mathbf{h})}_{i=1}Z(x_i)

Linear estimation[edit]

Spatial inference, or estimation, of a quantity Z: \mathbb{R}^n\rightarrow\mathbb{R}, at an unobserved location x_0, is calculated from a linear combination of the observed values z_i=Z(x_i) and weights w_i(x_0),\;i=1,\ldots,N:

\hat{Z}(x_0) = \begin{bmatrix} w_1 & w_2 & \cdots & w_N \end{bmatrix} \cdot \begin{bmatrix} z_1\\ z_2\\ \vdots\\ z_N \end{bmatrix} = \sum_{i=1}^n w_i(x_0) \times Z(x_i)

The weights w_i are intended to summarize two extremely important procedures in a spatial inference process:

  • reflect the structural "proximity" of samples to the estimation location, x_0
  • at the same time, they should have a desegregation effect, in order to avoid bias caused by eventual sample clusters

When calculating the weights w_i, there are two objectives in the geostatistical formalism: unbias and minimal variance of estimation.

If the cloud of real values Z(x_0) is plotted against the estimated values \hat{Z}(x_0), the criterion for global unbias, intrinsic stationarity or wide sense stationarity of the field, implies that the mean of the estimations must be equal to mean of the real values.

The second criterion says that the mean of the squared deviations (\hat{Z}(x)-Z(x)) must be minimal, what means that when the cloud of estimated values versus the cloud real values is more disperse, more imprecise the estimator is.

Methods[edit]

Depending on the stochastic properties of the random field and the various degrees of stationarity assumed, different methods for calculating the weights can be deducted, i.e. different types of kriging apply. Classical methods are:

  • Ordinary kriging assumes stationarity of the first moment of all random variables: E\{Z(x_i)\}=E\{Z(x_0)\}=m, where m is unknown.
  • Simple kriging assumes a known stationary mean: E\{Z(x)\}=m, where m is known.
  • Universal kriging assumes a general polynomial trend model, such as linear trend model E\{Z(x)\}=\sum_{k=0}^p \beta_k f_k(x).
  • IRFk-kriging assumes E\{Z(x)\} to be an unknown polynomial in x.
  • Indicator kriging uses indicator functions instead of the process itself, in order to estimate transition probabilities.
  • Multiple-indicator kriging is a version of indicator kriging working with a family of indicators. However, MIK has fallen out of favour as an interpolation technique in recent years. This is due to some inherent difficulties related to operation and model validation. Conditional simulation is fast becoming the accepted replacement technique in this case.
  • Disjunctive kriging is a nonlinear generalisation of kriging.
  • Lognormal kriging interpolates positive data by means of logarithms.

Ordinary kriging[edit]

The unknown value Z(x_0) is interpreted as a random variable located in x_0, as well as the values of neighbors samples Z(x_i),  i=1,\cdots ,N. The estimator \hat{Z}(x_0) is also interpreted as a random variable located in x_0, a result of the linear combination of variables.

In order to deduce the kriging system for the assumptions of the model, the following error committed while estimating Z(x) in x_0 is declared:

\epsilon(x_0) = \hat{Z}(x_0) - Z(x_0) =     \begin{bmatrix}W^T&-1\end{bmatrix} \cdot \begin{bmatrix}Z(x_i)&\cdots&Z(x_N)&Z(x_0)\end{bmatrix}^T =     \sum^{N}_{i=1}w_i(x_0) \times Z(x_i) - Z(x_0)

The two quality criteria referred previously can now be expressed in terms of the mean and variance of the new random variable \epsilon(x_0):

Unbias

Since the random function is stationary, E(Z(x_i))=E(Z(x_0))=m, the following constraint is observed:

E\left(\epsilon(x_0)\right)=0 \Leftrightarrow \sum^{N}_{i=1}w_i(x_0) \times E(Z(x_i)) - E(Z(x_0))=0 \Leftrightarrow
\Leftrightarrow m\sum^{N}_{i=1}w_i(x_0) - m=0 \Leftrightarrow \sum^{N}_{i=1}w_i(x_0) = 1 \Leftrightarrow \mathbf{1}^T \cdot W = 1

In order to ensure that the model is unbiased, the sum of weights needs to be one.

Minimal Variance: minimize E\left(\epsilon(x_0)^2\right)

Two estimators can have \epsilon(x_0)=0, but the dispersion around their mean determines the difference between the quality of estimators.

\begin{array}{rl}     Var(\epsilon(x_0)) &= Var\left(\begin{bmatrix}W^T&-1\end{bmatrix} \cdot     \begin{bmatrix}Z(x_i)&\cdots&Z(x_N)&Z(x_0)\end{bmatrix}^T\right) =\\     &\overset{*}{=} \begin{bmatrix}W^T&-1\end{bmatrix} \cdot     Var\left(\begin{bmatrix}Z(x_i)&\cdots&Z(x_N)&Z(x_0)\end{bmatrix}^T\right) \cdot     \begin{bmatrix}W\\-1\end{bmatrix}     \end{array}

* see covariance matrix for a detailed explanation

Var(\epsilon(x_0)) \overset{*}{=} \begin{bmatrix}W^T&-1\end{bmatrix} \cdot     \begin{bmatrix}Var_{x_i}& Cov_{x_ix_0}\\Cov_{x_ix_0}^T & Var_{x_0}\end{bmatrix} \cdot     \begin{bmatrix}W\\-1\end{bmatrix}

* where the literals \left\{Var_{x_i}, Var_{x_0}, Cov_{x_ix_0}\right\} stand for  \left\{Var\left(\begin{bmatrix}Z(x_1)&\cdots&Z(x_N)\end{bmatrix}^T\right), Var\left(Z(x_0)\right), Cov\left(\begin{bmatrix}Z(x_1)&\cdots&Z(x_N)\end{bmatrix}^T,Z(x_0)\right)\right\}.

Once defined the covariance model or variogramC(\mathbf{h}) or \gamma(\mathbf{h}), valid in all field of analysis of Z(x), than we can write an expression for the estimation variance of any estimator in function of the covariance between the samples and the covariances between the samples and the point to estimate:

\left\{\begin{array}{l}     Var(\epsilon(x_0)) = W^T \cdot Var_{x_i} \cdot W - Cov_{x_ix_0}^T \cdot W - W^T \cdot Cov_{x_ix_0} + Var_{x_0}\\     Var(\epsilon(x_0)) = Cov(0) + \sum_{i}\sum_{j}w_iw_jCov(x_i,x_j) - 2 \sum_iw_iC(x_i,x_0)\end{array} \right.

Some conclusions can be asserted from this expressions. The variance of estimation:

  • is not quantifiable to any linear estimator, once the stationarity of the mean and of the spatial covariances, or variograms, are assumed.
  • grows with the covariance between samples C(x_i,x_j), i.e. to the same distance to the estimating point, if the samples are proximal to each other, than the clustering effect, or informational redundancy, is bigger, so the estimation is worst. This conclusion is valid to any value of the weights: a preferential grouping of samples is always worst, which means that for the same number of samples the estimation variance grows with the relative weight of the sample clusters.
  • grows when the covariance between the samples and the point to estimate decreases. This means that, when the samples are more far away from x_0, the worst is the estimation.
  • grows with the a priori variance C(0) of the variable Z(x). When the variable is less disperse, the variance is lower in any point of the area A.
  • does not depend on the values of the samples. This means that the same spatial configuration (with the same geometrical relations between samples and the point to estimate) always reproduces the same estimation variance in any part of the area A. This way, the variance does not measures the uncertainty of estimation produced by the local variable.

Kriging system[edit]

\begin{align}     &\underset{W}{\operatorname{minimize}}& & W^T \cdot Var_{x_i} \cdot W - Cov_{x_ix_0}^T \cdot W - W^T \cdot Cov_{x_ix_0} + Var_{x_0} \\     &\operatorname{subject\;to}     & &\mathbf{1}^T \cdot W = 1     \end{align}

Solving this optimization problem (see Lagrange multipliers) results in the kriging system:

\begin{bmatrix}\hat{W}\\\mu\end{bmatrix} = \begin{bmatrix}     Var_{x_i}& \mathbf{1}\\     \mathbf{1}^T& 0     \end{bmatrix}^{-1}\cdot \begin{bmatrix}Cov_{x_ix_0}\\ 1\end{bmatrix} = \begin{bmatrix}     \gamma(x_1,x_1) & \cdots & \gamma(x_1,x_n) &1 \\     \vdots & \ddots & \vdots  & \vdots \\     \gamma(x_n,x_1) & \cdots & \gamma(x_n,x_n) & 1 \\     1 &\cdots& 1 & 0     \end{bmatrix}^{-1}     \begin{bmatrix}\gamma(x_1,x^*) \\ \vdots \\ \gamma(x_n,x^*) \\ 1\end{bmatrix}

the additional parameter \mu is a Lagrange multiplier used in the minimization of the kriging error \sigma_k^2(x) to honor the unbiasedness condition.

Simple kriging[edit]

Simple kriging is mathematically the simplest, but the least general. It assumes the expectation of the random field to be known, and relies on a covariance function. However, in most applications neither the expectation nor the covariance are known beforehand.

The practical assumptions for the application of simple kriging are:

Kriging system[edit]

The kriging weights of simple kriging have no unbiasedness condition and are given by the simple kriging equation system:

\begin{pmatrix}w_1 \\ \vdots \\ w_n \end{pmatrix}=     \begin{pmatrix}c(x_1,x_1) & \cdots & c(x_1,x_n) \\     \vdots & \ddots & \vdots  \\     c(x_n,x_1) & \cdots & c(x_n,x_n)     \end{pmatrix}^{-1}     \begin{pmatrix}c(x_1,x_0) \\ \vdots \\ c(x_n,x_0) \end{pmatrix}

This is analogous to a linear regression of Z(x_0) on the other z_1 , \ldots, z_n.

Estimation[edit]

The interpolation by simple kriging is given by:

\hat{Z}(x_0)=\begin{pmatrix}z_1 \\ \vdots \\ z_n  \end{pmatrix}'     \begin{pmatrix}c(x_1,x_1) & \cdots & c(x_1,x_n)  \\     \vdots & \ddots & \vdots   \\     c(x_n,x_1) & \cdots & c(x_n,x_n)     \end{pmatrix}^{-1}     \begin{pmatrix}c(x_1,x_0) \\ \vdots \\ c(x_n,x_0)\end{pmatrix}

The kriging error is given by:

\mathrm{Var}\left(\hat{Z}(x_0)-Z(x_0)\right)=\underbrace{c(x_0,x_0)}_{\mathrm{Var}(Z(x_0))}-     \underbrace{\begin{pmatrix}c(x_1,x_0) \\ \vdots \\ c(x_n,x_0)\end{pmatrix}'     \begin{pmatrix}     c(x_1,x_1) & \cdots & c(x_1,x_n)  \\     \vdots & \ddots & \vdots  \\     c(x_n,x_1) & \cdots & c(x_n,x_n)     \end{pmatrix}^{-1}     \begin{pmatrix}c(x_1,x_0) \\ \vdots \\ c(x_n,x_0) \end{pmatrix}}_{\mathrm{Var}(\hat{Z}(x_0))}

which leads to the generalised least squares version of the Gauss-Markov theorem (Chiles & Delfiner 1999, p. 159):

\mathrm{Var}(Z(x_0))=\mathrm{Var}(\hat{Z}(x_0))+\mathrm{Var}\left(\hat{Z}(x_0)-Z(x_0)\right).

Properties[edit]

(Cressie 1993, Chiles&Delfiner 1999, Wackernagel 1995)

  • The kriging estimation is unbiased: E[\hat{Z}(x_i)]=E[Z(x_i)]
  • The kriging estimation honors the actually observed value: \hat{Z}(x_i)=Z(x_i) (assuming no measurement error is incurred)
  • The kriging estimation \hat{Z}(x) is the best linear unbiased estimator of Z(x) if the assumptions hold. However (e.g. Cressie 1993):
    • As with any method: If the assumptions do not hold, kriging might be bad.
    • There might be better nonlinear and/or biased methods.
    • No properties are guaranteed, when the wrong variogram is used. However typically still a 'good' interpolation is achieved.
    • Best is not necessarily good: e.g. In case of no spatial dependence the kriging interpolation is only as good as the arithmetic mean.
  • Kriging provides \sigma_k^2 as a measure of precision. However this measure relies on the correctness of the variogram.

Applications[edit]

Although kriging was developed originally for applications in geostatistics, it is a general method of statistical interpolation that can be applied within any discipline to sampled data from random fields that satisfy the appropriate mathematical assumptions.

To date kriging has been used in a variety of disciplines, including the following:

and many others.

Design and analysis of computer experiments[edit]

Another very important and rapidly growing field of application, in engineering, is the interpolation of data coming out as response variables of deterministic computer simulations,[16] e.g.finite element method (FEM) simulations. In this case, kriging is used as a metamodeling tool, i.e. a black box model built over a designed set of computer experiments. In many practical engineering problems, such as the design of a metal forming process, a single FEM simulation might be several hours or even a few days long. It is therefore more efficient to design and run a limited number of computer simulations, and then use a kriging interpolator to rapidly predict the response in any other design point. Kriging is therefore used very often as a so-called surrogate model, implemented inside optimization routines.[17]

See also[edit]

References[edit]

  1. Jump up^ Grace Wahba (1990). Spline Models for Observational Data 59. SIAM. p. 162.
  2. Jump up^ Williams, Christopher K.I. (1998). "Prediction with Gaussian processes: From linear regression to linear prediction and beyond". In M. I. Jordan. Learning in graphical models. MIT Press. pp. 599โ€“612.
  3. Jump up^ Soares 2006, p.18
  4. Jump up^ Matheron G. 1978
  5. Jump up^ Hanefi Bayraktar and F. Sezer. Turalioglu (2005) "A Kriging-based approach for locating a sampling siteโ€”in the assessment of air quality, SERRA, 19 (4), 301-305 doi:10.1007/s00477-005-0234-8
  6. Jump up^ Chiles, J.-P. and P. Delfiner (1999) Geostatistics, Modeling Spatial Uncertainty, Wiley Series in Probability and statistics.
  7. Jump up^ Zimmerman, D.A. et al. (1998) "A comparison of seven geostatistically based inverse approaches to estimate transmissivies for modelling advective transport by groundwater flow", Water Resources Research, 34 (6), 1273-1413
  8. Jump up^ Tonkin M.J. Larson (2002) "Kriging Water Levels with a Regional-Linear and Point Logarithmic Drift", Ground Water, 33 (1), 338-353,
  9. Jump up^ Journel, A.G. and C.J. Huijbregts (1978) Mining Geostatistics, Academic Press London
  10. Jump up^ Andrew Richmond (2003) "Financially Efficient Ore Selection Incorporating Grade Uncertainty", Mathematical Geology, 35 (2), 195-215
  11. Jump up^ Goovaerts (1997) Geostatistics for natural resource evaluation, OUP. ISBN 0-19-511538-4
  12. Jump up^ X. Emery (2005) "Simple and Ordinary Kriging Multigaussian Kriging for Estimating recoverarble Reserves", Mathematical Geology, 37 (3), 295-31)
  13. Jump up^ A. Stein, F. van der Meer, B. Gorte (Eds.) (2002) Spatial Statistics for remote sensing. Springer. ISBN 0-7923-5978-X
  14. Jump up^ Barris, J. (2008) An expert system for appraisal by the method of comparison. PhD Thesis, UPC, Barcelona
  15. Jump up^ Barris, J. and Garcia Almirall,P.(2010) A density function of the appraisal value., UPC, Barcelona
  16. Jump up^ Sacks, J. and Welch, W.J. and Mitchell, T.J. and Wynn, H.P. (1989). Design and Analysis of Computer Experiments 4 (4). Statistical Science. pp. 409โ€“435.
  17. Jump up^ Strano, M. (2008). "A technique for FEM optimization under reliability constraint of process variables in sheet metal forming". International Journal of Material Forming 1: 13โ€“20.doi:10.1007/s12289-008-0001-8. edit

Books[edit]

  • Abramowitz, M., and Stegun, I. (1972), Handbook of Mathematical Functions, Dover Publications, New York.
  • Banerjee, S., Carlin, B.P. and Gelfand, A.E. (2004). Hierarchical Modeling and Analysis for Spatial Data. Chapman and Hall/CRC Press, Taylor and Francis Group.
  • Chiles, J.-P. and P. Delfiner (1999) Geostatistics, Modeling Spatial uncertainty, Wiley Series in Probability and statistics.
  • Cressie, N (1993) Statistics for spatial data, Wiley, New York
  • David, M (1988) Handbook of Applied Advanced Geostatistical Ore Reserve Estimation, Elsevier Scientific Publishing
  • Deutsch, C.V., and Journel, A. G. (1992), GSLIB - Geostatistical Software Library and User's Guide, Oxford University Press, New York, 338 pp.
  • Goovaerts, P. (1997) Geostatistics for Natural Resources Evaluation, Oxford University Press, New York ISBN 0-19-511538-4
  • Isaaks, E. H., and Srivastava, R. M. (1989), An Introduction to Applied Geostatistics, Oxford University Press, New York, 561 pp.
  • Journel, A. G. and C. J. Huijbregts (1978) Mining Geostatistics, Academic Press London
  • Journel, A. G. (1989), Fundamentals of Geostatistics in Five Lessons, American Geophysical Union, Washington D.C.
  • Press, WH; Teukolsky, SA; Vetterling, WT; Flannery, BP (2007), "Section 3.7.4. Interpolation by Kriging"Numerical Recipes: The Art of Scientific Computing (3rd ed.), New York: Cambridge University Press, ISBN 978-0-521-88068-8. Also, "Section 15.9. Gaussian Process Regression".
  • Soares, A. (2000), Geoestatรญstica para as Ciรชncias da Terra e do Ambiente, IST Press, Lisbon, ISBN 972-8469-46-2
  • Stein, M. L. (1999), Statistical Interpolation of Spatial Data: Some Theory for Kriging, Springer, New York.
  • Wackernagel, H. (1995) Multivariate Geostatistics - An Introduction with Applications, Springer Berlin

Historical references[edit]

  1. Agterberg, F P, Geomathematics, Mathematical Background and Geo-Science Applications, Elsevier Scientific Publishing Company, Amsterdam, 1974
  2. Cressie, N. A. C., The Origins of Kriging, Mathematical Geology, v. 22, pp 239โ€“252, 1990
  3. Krige, D.G, A statistical approach to some mine valuations and allied problems at the Witwatersrand, Master's thesis of the University of Witwatersrand, 1951
  4. Link, R F and Koch, G S, Experimental Designs and Trend-Surface Analsysis, Geostatistics, A colloquium, Plenum Press, New York, 1970
  5. Matheron, G., "Principles of geostatistics", Economic Geology, 58, pp 1246โ€“1266, 1963
  6. Matheron, G., "The intrinsic random functions, and their applications", Adv. Appl. Prob., 5, pp 439โ€“468, 1973
  7. Merriam, D F, Editor, Geostatistics, a colloquium, Plenum Press, New York, 1970

Software related to kriging[edit]

  • R packages
  1. BACCO - Bayesian analysis of computer code software
  2. tgp - Treed Gaussian processes
  3. DiceDesign, DiceEval, DiceKriging, DiceOptim - metamodeling packages of the Dice Consortium.
  • Matlab/GNU Octave
  1. DACE - Design and Analysis of Computer Experiments. A matlab kriging toolbox.
  2. GPML - Gaussian Processes for Machine Learning.
  3. STK - Small (Matlab/GNU Octave) Toolbox for Kriging for design and analysis of computer experiments.
  4. scalaGAUSS - Matlab kriging toolbox with a focus on large datasets
  • Scilab
  1. DACE-Scilab - Scilab port of the DACE kriging matlab toolbox
  2. krigeage - Kriging toolbox for Scilab
  3. KRISP - Kriging based regression and optimization package for Scilab
  • Python
  1. scikit-learn - machine learning in Python
CONTEXT(Help)
-
Machine Learning Methods & Algorithms ยปMachine Learning Methods & Algorithms
Supervised learning ยปSupervised learning
Gaussian process regression (Kriging)
+Comments (0)
+Citations (1)
+About