-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
MarginalSparse rename to MarginalApprox #5242
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add subclass MarginalSparse with warning change default approx from FITC to VFE fix bug in whether cov_func and mean_func are forced kwargs in MarginalApprox
Should add deprecation warning as well as release notes. |
bwengals
commented
Dec 8, 2021
Codecov Report
@@ Coverage Diff @@
## main #5242 +/- ##
==========================================
+ Coverage 78.94% 79.18% +0.23%
==========================================
Files 88 88
Lines 14237 14347 +110
==========================================
+ Hits 11240 11360 +120
+ Misses 2997 2987 -10
|
LGTM. Are the CI problems related to this? |
Yes, tests failing was my bad. Passing now. |
twiecki
approved these changes
Dec 14, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Renames
gp.MarginalSparse
togp.MarginalApprox
as per #5228.There are also two other related changes that should have been in #5055.
cov_func
andmean_func
weren't forced kwargs inMarginalSparse
, fixed that.approx
from FITC to VFE. VFE is a better default because it's posterior is a proper GP, while FITC can show heteroskedastic behavior depending on where the inducing point locations are placed. VFE may sometimes overestimate the noise. This follows recommendation of https://proceedings.neurips.cc/paper/2016/file/7250eb93b3c18cc9daa29cf58af7a004-Paper.pdf