We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In pipeline_stable_diffusion_inpaint.py there is this two lines:
latent_model_input = torch.cat([latent_model_input, mask, masked_image_latents], dim=1) latent_model_input = self.scheduler.scale_model_input(latent_model_input, t)
It seen to break some schedulers, setting scale first should fix it:
latent_model_input = self.scheduler.scale_model_input(latent_model_input, t) latent_model_input = torch.cat([latent_model_input, mask, masked_image_latents], dim=1)
No response
Windows
The text was updated successfully, but these errors were encountered:
I think you're very right here! That's a great catch :-) Thanks to you inpaint should now work for all schedulers ❤️
#1331
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
In pipeline_stable_diffusion_inpaint.py there is this two lines:
It seen to break some schedulers, setting scale first should fix it:
Reproduction
No response
Logs
No response
System Info
Windows
The text was updated successfully, but these errors were encountered: