You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DiscreteGaussianProcess is a finite view obtained by sampling a finite number of points from a GaussianProcess. This is only sound if the sampling is done uniformly, and with sufficiently many points such that the characteristics of the GP can be represented. However, the current implementation does not make sure that this is the case.
Problems that appear include:
The basis functions are not necessarily orthogonal
The probabilities (e.g. logpdf, pdf) of the distribution is dependent on the sampling
The text was updated successfully, but these errors were encountered:
A potential solution is now available thanks to the PivotedCholesky approximation. It should be possible to apply the PivotedCholesky decomposition on the kernel of the Gaussian process, in order to achieve a proper orthogonalization of the basis.
The
DiscreteGaussianProcess
is a finite view obtained by sampling a finite number of points from aGaussianProcess
. This is only sound if the sampling is done uniformly, and with sufficiently many points such that the characteristics of the GP can be represented. However, the current implementation does not make sure that this is the case.Problems that appear include:
The text was updated successfully, but these errors were encountered: