Skip to content

Commit

Permalink
Suppress linter
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisyeh96 committed Nov 18, 2024
1 parent 49d8010 commit 127f9f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpytorch/likelihoods/likelihood.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def __call__(self, input: Union[Tensor, MultivariateNormal], *args: Any, **kwarg
analytic_marginal_likelihood = gpytorch.likelihoods.GaussianLikelihood()
marginal = analytic_marginal_likelihood(f)
print(type(marginal), marginal.batch_shape, marginal.event_shape)
# >>> <class 'gpytorch.distributions.multivariate_normal.MultivariateNormal'> torch.Size([]) torch.Size([20])
# >>> <class 'gpytorch.distributions.multivariate_normal.MultivariateNormal'> torch.Size([]) torch.Size([20]) # noqa: E501
# MC marginal computation - all other likelihoods
mc_marginal_likelihood = gpytorch.likelihoods.BetaLikelihood()
Expand Down

0 comments on commit 127f9f0

Please sign in to comment.