Replies: 1 comment
-
This doesn't answer your specific question, but we have an implementation of a fully Bayesian MTGP in botorch: https://github.com/pytorch/botorch/blob/main/botorch/models/fully_bayesian_multitask.py Note that that uses a pure pytorch model for fitting, from which we then load hyperparameter samples into a gpytorch model (this is for performance reasons since running the MCMC chain via pyro on the gpytorch model can be very slow). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am trying to apply fully Bayesian inference on multitasks exact GP model. I have developed the following code. In the provided code I assumed that all hyperparameters should be learned, and I am doing this by integrating Pyro with gpytorch and run MCMC using nuts. I am new to gpytorch and Pyro so I am wondering If I am applying the concept correctly. I really appreciate any advice or hint on how to make the code run correctly without error.
Thank you in advance.
running the above code, gives the following error
Beta Was this translation helpful? Give feedback.
All reactions