-
Notifications
You must be signed in to change notification settings - Fork 427
Add a helper for producing a DeterministicModel using a Matheron path #2435
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This pull request was exported from Phabricator. Differential Revision: D59941730 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2435 +/- ##
=======================================
Coverage 99.98% 99.98%
=======================================
Files 189 189
Lines 16675 16696 +21
=======================================
+ Hits 16673 16694 +21
Misses 2 2 ☔ View full report in Codecov by Sentry. |
This pull request was exported from Phabricator. Differential Revision: D59941730 |
…pytorch#2435) Summary: Pull Request resolved: pytorch#2435 Out of the box, pathwise sampling code does not produce outputs that conform to BoTorch modeling conventions. This adds a helper that produces a Matheron path and wraps it in a `GenericDeterministicModel` using a helper that reshapes the path outputs to mimic the expected behavior from the model's posterior. This will offer a straightforward replacement of `get_gp_samples`, which is being deprecated. Differential Revision: D59941730
9d92e2c
to
3435aca
Compare
…pytorch#2435) Summary: Pull Request resolved: pytorch#2435 Out of the box, pathwise sampling code does not produce outputs that conform to BoTorch modeling conventions. This adds a helper that produces a Matheron path and wraps it in a `GenericDeterministicModel` using a helper that reshapes the path outputs to mimic the expected behavior from the model's posterior. This will offer a straightforward replacement of `get_gp_samples`, which is being deprecated. Differential Revision: D59941730
…pytorch#2435) Summary: Pull Request resolved: pytorch#2435 Out of the box, pathwise sampling code does not produce outputs that conform to BoTorch modeling conventions. This adds a helper that produces a Matheron path and wraps it in a `GenericDeterministicModel` using a helper that reshapes the path outputs to mimic the expected behavior from the model's posterior. This will offer a straightforward replacement of `get_gp_samples`, which is being deprecated. Reviewed By: esantorella Differential Revision: D59941730
This pull request was exported from Phabricator. Differential Revision: D59941730 |
3435aca
to
de37ea1
Compare
This pull request has been merged in 2771266. |
Summary:
Out of the box, pathwise sampling code does not produce outputs that conform to BoTorch modeling conventions. This adds a helper that produces a Matheron path and wraps it in a
GenericDeterministicModel
using a helper that reshapes the path outputs to mimic the expected behavior from the model's posterior.This will offer a straightforward replacement of
get_gp_samples
, which is being deprecated.Differential Revision: D59941730