-
Notifications
You must be signed in to change notification settings - Fork 401
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
Speed up Warped GP tutorial by only running one replication and not comparing against other methods #2462
Conversation
This pull request was exported from Phabricator. Differential Revision: D61054473 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2462 +/- ##
=======================================
Coverage 99.98% 99.98%
=======================================
Files 191 191
Lines 16823 16823
=======================================
Hits 16821 16821
Misses 2 2 ☔ View full report in Codecov by Sentry. |
This pull request was exported from Phabricator. Differential Revision: D61054473 |
b1223c8
to
48a2f66
Compare
…omparing against other methods (pytorch#2462) Summary: Pull Request resolved: pytorch#2462 Context: This tutorial has been taking too long to run. Also, a tutorial doesn't need to serve both as a demonstration tha the method works better than other methods (in a statistically significant way) and as a demonstration of how to use it. This PR: * Only ones one replication, rather than 3. (Putting a CI on 3 data points is a little silly anyway.) * Removes the comparision methods, Sobol and qNEI with a non-warped GP. * Uses qLogNEI instead of qNEI * Use SingleTaskGP instead of deprecated FixedNoiseGP * No longer manually specifies outcome transform (building on pytorch#2458) * Makes copy edits Differential Revision: D61054473
This pull request was exported from Phabricator. Differential Revision: D61054473 |
48a2f66
to
6cef999
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for these updates (including improving the writing), this is great.
This pull request has been merged in fbbcc73. |
Summary:
Context: This tutorial has been taking too long to run. Also, a tutorial doesn't need to serve both as a demonstration tha the method works better than other methods (in a statistically significant way) and as a demonstration of how to use it.
This PR:
Differential Revision: D61054473