Migrate State Dict Files to account for GPyTorch state dict change#4916
Open
hvarfner wants to merge 1 commit intofacebook:mainfrom
Open
Migrate State Dict Files to account for GPyTorch state dict change#4916hvarfner wants to merge 1 commit intofacebook:mainfrom
hvarfner wants to merge 1 commit intofacebook:mainfrom
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4916 +/- ##
==========================================
- Coverage 96.81% 96.80% -0.01%
==========================================
Files 595 595
Lines 63142 63143 +1
==========================================
- Hits 61128 61127 -1
- Misses 2014 2016 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
hvarfner
pushed a commit
to hvarfner/Ax
that referenced
this pull request
Feb 19, 2026
…acebook#4916) Summary: Pull Request resolved: facebook#4916 Re-named benchmarking state dicts to account for state dict attribute changes in GPyTorch. "_transformed" attribute of priors of TransformedDistributions have been replaced by a constant BUFFERED_PREFIX = "__buffered_". The changes in .pt files correspond to changing the attribute names for the priors, from `"_transformed" `-->` BUFFERED_PREFIX = "__buffered_"` Reviewed By: Balandat Differential Revision: D93032568
581aa16 to
39b9ff1
Compare
hvarfner
pushed a commit
to hvarfner/Ax
that referenced
this pull request
Feb 19, 2026
…acebook#4916) Summary: Pull Request resolved: facebook#4916 Re-named benchmarking state dicts to account for state dict attribute changes in GPyTorch. "_transformed" attribute of priors of TransformedDistributions have been replaced by a constant BUFFERED_PREFIX = "__buffered_". The changes in .pt files correspond to changing the attribute names for the priors, from `"_transformed" `-->` BUFFERED_PREFIX = "__buffered_"` Reviewed By: Balandat Differential Revision: D93032568
39b9ff1 to
441180f
Compare
hvarfner
pushed a commit
to hvarfner/Ax
that referenced
this pull request
Feb 19, 2026
…acebook#4916) Summary: Pull Request resolved: facebook#4916 Re-named benchmarking state dicts to account for state dict attribute changes in GPyTorch. "_transformed" attribute of priors of TransformedDistributions have been replaced by a constant BUFFERED_PREFIX = "__buffered_". The changes in .pt files correspond to changing the attribute names for the priors, from `"_transformed" `-->` BUFFERED_PREFIX = "__buffered_"` Reviewed By: Balandat Differential Revision: D93032568
441180f to
2e93fe1
Compare
hvarfner
pushed a commit
to hvarfner/Ax
that referenced
this pull request
Feb 19, 2026
…acebook#4916) Summary: Pull Request resolved: facebook#4916 Re-named benchmarking state dicts to account for state dict attribute changes in GPyTorch. "_transformed" attribute of priors of TransformedDistributions have been replaced by a constant BUFFERED_PREFIX = "__buffered_". The changes in .pt files correspond to changing the attribute names for the priors, from `"_transformed" `-->` BUFFERED_PREFIX = "__buffered_"` Reviewed By: Balandat Differential Revision: D93032568
2e93fe1 to
65014a2
Compare
hvarfner
pushed a commit
to hvarfner/Ax
that referenced
this pull request
Feb 19, 2026
…acebook#4916) Summary: Pull Request resolved: facebook#4916 Re-named benchmarking state dicts to account for state dict attribute changes in GPyTorch. "_transformed" attribute of priors of TransformedDistributions have been replaced by a constant BUFFERED_PREFIX = "__buffered_". The changes in .pt files correspond to changing the attribute names for the priors, from `"_transformed" `-->` BUFFERED_PREFIX = "__buffered_"` Reviewed By: Balandat Differential Revision: D93032568
65014a2 to
36ff1f4
Compare
…acebook#4916) Summary: Pull Request resolved: facebook#4916 Re-named benchmarking state dicts to account for state dict attribute changes in GPyTorch. "_transformed" attribute of priors of TransformedDistributions have been replaced by a constant BUFFERED_PREFIX = "__buffered_". The changes in .pt files correspond to changing the attribute names for the priors, from `"_transformed" `-->` BUFFERED_PREFIX = "__buffered_"` Reviewed By: Balandat Differential Revision: D93032568
36ff1f4 to
a0d87f4
Compare
This file contains hidden or 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
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.
Summary:
Re-named benchmarking state dicts to account for state dict attribute changes in GPyTorch. "_transformed" attribute of priors of TransformedDistributions have been replaced by a constant BUFFERED_PREFIX = "_buffered". The changes in .pt files correspond to changing the attribute names for the priors, from
"_transformed"-->BUFFERED_PREFIX = "__buffered_"Reviewed By: Balandat
Differential Revision: D93032568