Is there something like log_marginal_likelihood()
?
#1679
Answered
by
gpleiss
MJimitater
asked this question in
Q&A
-
Hi folks, thank you for pushing forward the developments with v.1.5.0. 🎉 I was wondering: in sklearn after fitting a GP classifier, one can call the log marginal likelihood simply by Is there something like that in GPyTorch? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
gpleiss
Jul 5, 2021
Replies: 1 comment 2 replies
-
Are you looking for the log marginal likelihood of a GP classifier or a regressor? For a regressor, call: model.likelihood(model(train_x)).log_prob(train_y) |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
MJimitater
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Are you looking for the log marginal likelihood of a GP classifier or a regressor? For a regressor, call: