Acredito que a derivada de um processo gaussiano (GP) é outra GP e, portanto, gostaria de saber se existem equações de forma fechada para as equações de previsão da derivada de uma GP? Em particular, estou usando o núcleo de covariância exponencial ao quadrado (também chamado de Gaussiano) e quero saber sobre como fazer previsões sobre a derivada do processo Gaussiano.
12
Respostas:
The short answer: Yes, if your Gaussian Process (GP) is differentiable, its derivative is again a GP. It can be handled like any other GP and you can calculate predictive distributions.
But since a GPG and its derivative G′ are closely related you can infer properties of either one from the other.
A zero-mean GP with covariance functionK is differentiable (in mean square) if K′(x1,x2)=∂2K∂x1∂x2(x1,x2) exists. In that case the covariance function of G′ is equal to K′ . If the process is not zero-mean, then the mean function needs to be differentiable as well. In that case the mean function of G′ is the derivative of the mean function of G .
(For more details check for example Appendix 10A of A. Papoulis "Probability, random variables and stochastic processes")
Since the Gaussian Exponential Kernel is differentiable of any order, this is no problem for you.
This is straightforward if you just want to condition on observations ofG′ : If you can calculate the respective derivatives you know mean and covariance function so that you can do inference with it in the same way as you would do it with any other GP.
But you can also derive a predictive distributions forG′ based on observations of G . You do this by calculating the posterior of G given your observations in the standard way and then applying 1. to the covariance and mean function of the posterior process.
This works in the same manner the other way around, i.e. you condition on observations ofG′ to infer a posterior of G . In that case the covariance function of G is given by integrals of K′ and might be hard to calculate but the logic is really the same.
fonte
It is. See Rasmussen and Williams section 9.4. Also, some authors argue strongly against the square exponential kenrnel - it is too smooth.
fonte