-
Notifications
You must be signed in to change notification settings - Fork 27.2k
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 support for SD 2.1 Turbo #14170
Merged
Merged
Add support for SD 2.1 Turbo #14170
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
…d_hijack is only partially undone
AUTOMATIC1111
approved these changes
Dec 2, 2023
1 task
w-e-w
added a commit
that referenced
this pull request
Dec 2, 2023
This was referenced Dec 2, 2023
Closed
Closed
Nice, works well with StableSR! But I have the bug with model switching with this model too #13763 I have to provide this model via --ckpt argument Maybe you have any idea, why it happens?
The problem only with sd2.1 and only on reload |
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.
Description
This adds support for the newly released Stable Diffusion 2.1 Turbo model, which is more lightweight than sdxl-turbo.
Until now, all SD1 and SD2 models have been released in the LDM format, and all SDXL models have been released in SGM format. Because of that, there is a strong assumption all over the webui codebase that SGM format implies SDXL.
However, the SD 2.1 Turbo checkpoint was released in SGM format, breaking that assumption. Rather than rewrite the whole codebase to account for this possibility (possibly breaking extensions), I opted just to convert the checkpoint from SGM to LDM on load. (Which is as simple as renaming the dict keys from
conditioner.embedders.0.model.*
tocond_stage_model.model.*
). By doing this, all features and extensions that were working with SD2, immediately work with SD2 Turbo as well.This PR also fixes an existing issue where undo_hijack was only partially undoing the hijack, causing loading of SD2 models to fail (because is_using_v_parameterization_for_sd2 was not able to run).
Screenshots/videos:
Checklist: