-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
Add missing MochiEncoder3D.gradient_checkpointing attribute #11146
Add missing MochiEncoder3D.gradient_checkpointing attribute #11146
Conversation
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
@bot/ style |
@unittest.skip("Unsupported test.") | ||
def test_effective_gradient_checkpointing(self): | ||
""" Fails because of conv_cache: | ||
tests/models/autoencoders/test_models_autoencoder_mochi.py::AutoencoderKLMochiTests::test_effective_gradient_checkpointing - | ||
TypeError: ModelMixin.enable_gradient_checkpointing.<locals>._gradient_checkpointing_func() got an unexpected keyword argument 'conv_cache' | ||
""" | ||
pass |
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.
I think this test should be made to pass. It fails because we don't accept kwargs in gradient checkpointing func:
def _gradient_checkpointing_func(module, *args): |
Could you update the vae implementation to not pass conv_cache argument as a keyword arg and instead just use normal arg? LMK if you'd like me to take this up in a separate PR. Other than, changes LGTM, thanks!
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.
Done ✅
@bot /style |
Style fixes have been applied. View the workflow run here. |
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!
What does this PR do?
This PR fixes
MochiEncoder3D
is missing thegradient_checkpointing
attribute in current main:src/src/diffusers/models/autoencoders/autoencoder_kl_mochi.py causing the forward pass to fail withAttributeError: 'MochiEncoder3D' object has no attribute 'gradient_checkpointing'
. We simply addedself.gradient_checkpointing = False
inMochiEncoder3D
.Also a limited set of tests were added for
AutoencoderKLMochi
: there are a number of tests we skip, but we feel fixing those are not in the scope of this PR.Before submitting
documentation guidelines, and
here are tips on formatting docstrings.