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
Paying attention to the Noise kernel, it learns values -25 and -17 after training, (these are in log space) so the kernel learns a noise of exp(-25) and exp(-3) is learnt . The default regularization alg_reg_noise (=minimum noise) is 10^-3, so basically we end up with a noise of 10^-3.
Solution
if the solution produces overly confident (spiked) posteriors: increase alg_reg_noise with noise_learn = true can help regularize the training more
if the posterior with this result still looks reasonable: then alg_reg_noise may be too large, (i.e. the true noise you are trying to learn is less than alg_reg_noise)
set noise_learn = false (which sets alg_reg_noise = 1 (in a normalized space) and doesn't learn the extra kernel) tends to solve the problem too
Action to be taken
Add a warning to users if the noise learnt << alg_reg_noise. Suggest the above solutions.
The text was updated successfully, but these errors were encountered:
It is not uncommon to see output from GP training that looks like this:
This comes from a
2D -> 2D
problem training ARD kernel withGaussianProcess(...,noise_learn=true)
, (the default)Paying attention to the
Noise
kernel, it learns values-25
and-17
after training, (these are in log space) so the kernel learns a noise ofexp(-25)
andexp(-3)
is learnt . The default regularizationalg_reg_noise
(=minimum noise) is10^-3
, so basically we end up with a noise of10^-3
.Solution
alg_reg_noise
withnoise_learn = true
can help regularize the training morealg_reg_noise
may be too large, (i.e. the true noise you are trying to learn is less thanalg_reg_noise
)noise_learn = false
(which setsalg_reg_noise = 1
(in a normalized space) and doesn't learn the extra kernel) tends to solve the problem tooAction to be taken
Add a warning to users if the
noise learnt << alg_reg_noise
. Suggest the above solutions.The text was updated successfully, but these errors were encountered: