Skip to content

Commit

Permalink
Replace calls to deprecated mvn argument of GPyTorchPosterior wit…
Browse files Browse the repository at this point in the history
…h `distribution` (#2289)

Summary:

This will not change behavior.

Reviewed By: saitcakmak

Differential Revision: D55094724
  • Loading branch information
esantorella authored and facebook-github-bot committed Mar 19, 2024
1 parent f062de8 commit 89ae4b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ax/models/torch/alebo.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def posterior(
assert output_indices is None
assert not observation_noise
mvn = self(X)
posterior = GPyTorchPosterior(mvn=mvn)
posterior = GPyTorchPosterior(distribution=mvn)
if posterior_transform is not None:
return posterior_transform(posterior)
return posterior
Expand Down

0 comments on commit 89ae4b4

Please sign in to comment.