<- 5
m <- rnorm(m)
x <- (x %*% t(x) + diag(rep(0.0001, m)))
Theta0 <- solve(Theta0)
Sigma0 <- 10000
n <- mvtnorm::rmvnorm(n = n, sigma = Sigma0)
y <- kern_fbm(x)
H
corrplot(Theta0, is.corr = FALSE, col = COL2('RdBu', 10), addCoef.col = 'black')
Estimation of Gaussian covariance kernels using covariate information
Assuming the covariance kernel to be in a conditional RKHS, we propose a methodology to estimate it and its hyperparameters. The present work can be viewed as an extension of the I-prior methodology for regression (Bergsma, 2019; Bergsma and Jamil, 2023) to covariance estimation. Applications are not only in time series analysis (when time is the covariate), but also in regression when we want a flexible estimation of the error covariance.
Introduction
Consider a multivariate Gaussian distribution with mean 0 and precision matrix
The
Prior distribution
A conjugate prior for the precision matrix of a multivariate Gaussian distribution is the Wishart distribution. The Wishart distribution is parameterized by an
where
Likelihood
Given a sample of
Posterior distribution
Using Bayes’ theorem, the posterior distribution of
To derive the posterior distribution in closed form, we need only to combine the terms in the likelihood and the prior that involve
The posteior mean of
Adding covariate information
Let
Deriving the posterior distribution for
Let
Setting an I-prior
The covariance kernel of
On the other hand, given
Experiments
Here the idea is to simulate data from a multivariate normal distribution with a known precision matrix
Simulate data
The true
Posterior estimate
# Posterior mean of I-prior estimate for Theta
<- crossprod(y - mean(y)) / n
S <- solve(n * H %*% S %*% H + solve(S))
What <- nrow(What) + n
nuhat <- H %*% (What * nuhat) %*% H
Theta_hat
corrplot(Theta_hat, is.corr = FALSE, col = COL2('RdBu', 10), addCoef.col = 'black')